diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-09-12 13:46:32 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-09-12 13:46:32 +0000 |
commit | 56b9efc0f3f0ebf8a9c7f70d3c9c3fb47f86c1d6 (patch) | |
tree | 1802ab3510e718e6985f6769048767b9b8cf797a | |
parent | a4b72ef0403c67e2d88c69ed60306bcc7406dd76 (diff) | |
download | FreeBSD-src-56b9efc0f3f0ebf8a9c7f70d3c9c3fb47f86c1d6.zip FreeBSD-src-56b9efc0f3f0ebf8a9c7f70d3c9c3fb47f86c1d6.tar.gz |
Move the declaration of __cleanup to libc_private.h as it is used in both
stdio/ and stdlib/. Don't define __cleanup twice.
-rw-r--r-- | lib/libc/include/libc_private.h | 5 | ||||
-rw-r--r-- | lib/libc/stdio/local.h | 1 | ||||
-rw-r--r-- | lib/libc/stdio/makebuf.c | 4 | ||||
-rw-r--r-- | lib/libc/stdlib/abort.c | 2 | ||||
-rw-r--r-- | lib/libc/stdlib/exit.c | 4 |
5 files changed, 12 insertions, 4 deletions
diff --git a/lib/libc/include/libc_private.h b/lib/libc/include/libc_private.h index 0f170db..8dca7a0 100644 --- a/lib/libc/include/libc_private.h +++ b/lib/libc/include/libc_private.h @@ -135,4 +135,9 @@ extern const char *__progname; */ extern struct _spinlock *__malloc_lock; +/* + * Function to clean up streams, called from abort() and exit(). + */ +extern void (*__cleanup)(void); + #endif /* _LIBC_PRIVATE_H_ */ diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h index 16a9e78..74c3238 100644 --- a/lib/libc/stdio/local.h +++ b/lib/libc/stdio/local.h @@ -65,7 +65,6 @@ extern fpos_t __sseek(void *, fpos_t, int); extern int __sclose(void *); extern void __sinit(void); extern void _cleanup(void); -extern void (*__cleanup)(void); extern void __smakebuf(FILE *); extern int __swhatbuf(FILE *, size_t *, int *); extern int _fwalk(int (*)(FILE *)); diff --git a/lib/libc/stdio/makebuf.c b/lib/libc/stdio/makebuf.c index bc8a468..bdade67 100644 --- a/lib/libc/stdio/makebuf.c +++ b/lib/libc/stdio/makebuf.c @@ -46,9 +46,11 @@ __FBSDID("$FreeBSD$"); #include <unistd.h> #include <stdio.h> #include <stdlib.h> -#include "local.h" #include "un-namespace.h" +#include "libc_private.h" +#include "local.h" + /* * Allocate a file buffer, or switch to unbuffered I/O. * Per the ANSI C standard, ALL tty devices default to line buffered. diff --git a/lib/libc/stdlib/abort.c b/lib/libc/stdlib/abort.c index 36cd15b..468a9bf 100644 --- a/lib/libc/stdlib/abort.c +++ b/lib/libc/stdlib/abort.c @@ -45,7 +45,7 @@ __FBSDID("$FreeBSD$"); #include <pthread.h> #include "un-namespace.h" -void (*__cleanup)(); +#include "libc_private.h" void abort() diff --git a/lib/libc/stdlib/exit.c b/lib/libc/stdlib/exit.c index 83abdbd..cafb127 100644 --- a/lib/libc/stdlib/exit.c +++ b/lib/libc/stdlib/exit.c @@ -41,9 +41,11 @@ __FBSDID("$FreeBSD$"); #include <stdlib.h> #include <unistd.h> #include "un-namespace.h" + #include "atexit.h" +#include "libc_private.h" -void (*__cleanup)(); +void (*__cleanup)(void); /* * This variable is zero until a process has created a thread. |