diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
commit | d522f6eb0324008023fed0be4d046f3fc51b0356 (patch) | |
tree | 9ecf8345e3c3ff77a81ef2a20d84c6497533e804 /regress/lib/libpthread | |
parent | 1b433a7e5b43fe0dec72e100525e31299629c117 (diff) |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'regress/lib/libpthread')
-rw-r--r-- | regress/lib/libpthread/include/test.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/regress/lib/libpthread/include/test.h b/regress/lib/libpthread/include/test.h index 32798c2d1df..58fdc8fb554 100644 --- a/regress/lib/libpthread/include/test.h +++ b/regress/lib/libpthread/include/test.h @@ -1,4 +1,4 @@ -/* $OpenBSD: test.h,v 1.3 2002/02/16 21:27:32 millert Exp $ */ +/* $OpenBSD: test.h,v 1.4 2002/02/17 19:42:27 millert Exp $ */ #ifndef _h_test_ #define _h_test_ @@ -12,10 +12,10 @@ int _thread_sys_write(int, const char*, size_t); __dead void _thread_sys__exit(int) __attribute__((__noreturn__)); -static __dead void __vpanic __P((const char *, const char *, const char *, - int, const char *, va_list)) __attribute__((__noreturn__)); -static __dead void __panic __P((const char *, const char *, const char *, - int, const char *, ...)) __attribute__((__noreturn__)); +static __dead void __vpanic(const char *, const char *, const char *, + int, const char *, va_list) __attribute__((__noreturn__)); +static __dead void __panic(const char *, const char *, const char *, + int, const char *, ...) __attribute__((__noreturn__)); #if defined(__OpenBSD__) || defined(__FreeBSD__) #include <pthread.h> |