diff options
author | peter <peter@FreeBSD.org> | 1997-03-11 11:39:58 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-03-11 11:39:58 +0000 |
commit | 8574ea8a0e1603e7eb2849859cac28f7a9071f3c (patch) | |
tree | 9a336dba1de98fdb100be044eb79b81ed304c8c8 /lib/libc/stdlib/atexit.c | |
parent | bb2b65bb1cc28ad6ffb0a8ab803ddd9943de91da (diff) | |
download | FreeBSD-src-8574ea8a0e1603e7eb2849859cac28f7a9071f3c.zip FreeBSD-src-8574ea8a0e1603e7eb2849859cac28f7a9071f3c.tar.gz |
Merge Lite2 changes
Diffstat (limited to 'lib/libc/stdlib/atexit.c')
-rw-r--r-- | lib/libc/stdlib/atexit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/stdlib/atexit.c b/lib/libc/stdlib/atexit.c index ea2a7e2..a65dae5 100644 --- a/lib/libc/stdlib/atexit.c +++ b/lib/libc/stdlib/atexit.c @@ -35,7 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)atexit.c 8.1 (Berkeley) 6/4/93"; +static char sccsid[] = "@(#)atexit.c 8.2 (Berkeley) 7/3/94"; #endif /* LIBC_SCCS and not lint */ #include <stddef.h> @@ -43,6 +43,8 @@ static char sccsid[] = "@(#)atexit.c 8.1 (Berkeley) 6/4/93"; #include <unistd.h> #include "atexit.h" +struct atexit *__atexit; /* points to head of LIFO stack */ + /* * Register a function to be performed at exit. */ |