diff options
author | deischen <deischen@FreeBSD.org> | 2002-11-13 19:35:40 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2002-11-13 19:35:40 +0000 |
commit | 4f9e24b0b082ff31dea167715080ab88905b8c43 (patch) | |
tree | b3e302dfe53144dcd5370f33a53f97f8a7f88e2a | |
parent | 46c197415661ac6348c26ba55c27ee90618f0da4 (diff) | |
download | FreeBSD-src-4f9e24b0b082ff31dea167715080ab88905b8c43.zip FreeBSD-src-4f9e24b0b082ff31dea167715080ab88905b8c43.tar.gz |
Make this compile with whatever error-checking is enabled in buildworld
and/or beast.
-rw-r--r-- | lib/libc/include/libc_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/include/libc_private.h b/lib/libc/include/libc_private.h index 96ee8ad..a588c8a 100644 --- a/lib/libc/include/libc_private.h +++ b/lib/libc/include/libc_private.h @@ -101,9 +101,9 @@ typedef enum { PJT_MAX } pjt_index_t; -typedef int (*pthread_func_t)(); +typedef int (*pthread_func_t)(void); -extern pthread_func_t __thr_jtable[][]; +extern pthread_func_t *__thr_jtable[]; /* * This is a pointer in the C run-time startup code. It is used |