summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/sys/callout.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libnetworking/sys/callout.h')
-rw-r--r--cpukit/libnetworking/sys/callout.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libnetworking/sys/callout.h b/cpukit/libnetworking/sys/callout.h
index 132dc3e92c..150609eef6 100644
--- a/cpukit/libnetworking/sys/callout.h
+++ b/cpukit/libnetworking/sys/callout.h
@@ -41,7 +41,7 @@
struct callout {
struct callout *c_next; /* next callout in queue */
void *c_arg; /* function argument */
- void (*c_func) __P((void *)); /* function to call */
+ void (*c_func)(void *); /* function to call */
int c_time; /* ticks to the event */
};