diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libc/stdlib/atexit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/atexit.h b/src/lib/libc/stdlib/atexit.h index 28bf3a7f27..21b0c2e532 100644 --- a/src/lib/libc/stdlib/atexit.h +++ b/src/lib/libc/stdlib/atexit.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: atexit.h,v 1.5 2002/08/30 07:58:07 dhartmei Exp $ */ | 1 | /* $OpenBSD: atexit.h,v 1.6 2003/07/31 07:08:42 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2002 Daniel Hartmeier | 4 | * Copyright (c) 2002 Daniel Hartmeier |
@@ -34,7 +34,7 @@ struct atexit { | |||
34 | struct atexit *next; /* next in list */ | 34 | struct atexit *next; /* next in list */ |
35 | int ind; /* next index in this table */ | 35 | int ind; /* next index in this table */ |
36 | int max; /* max entries >= ATEXIT_SIZE */ | 36 | int max; /* max entries >= ATEXIT_SIZE */ |
37 | void (*fns[1])(); /* the table itself */ | 37 | void (*fns[1])(void); /* the table itself */ |
38 | }; | 38 | }; |
39 | 39 | ||
40 | extern int __atexit_invalid; | 40 | extern int __atexit_invalid; |