summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorderaadt <>2003-07-31 07:08:42 +0000
committerderaadt <>2003-07-31 07:08:42 +0000
commit1e17357c09b2a156a0fa1407b68c4158394b9d7e (patch)
treea7f24df0bb2523b437c4f4f0232388d7aa748375
parent67ecf86ac52c1a639e8246a8b5441da5d657f837 (diff)
downloadopenbsd-1e17357c09b2a156a0fa1407b68c4158394b9d7e.tar.gz
openbsd-1e17357c09b2a156a0fa1407b68c4158394b9d7e.tar.bz2
openbsd-1e17357c09b2a156a0fa1407b68c4158394b9d7e.zip
fix a proto
-rw-r--r--src/lib/libc/stdlib/atexit.h4
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
40extern int __atexit_invalid; 40extern int __atexit_invalid;