From 1e17357c09b2a156a0fa1407b68c4158394b9d7e Mon Sep 17 00:00:00 2001
From: deraadt <>
Date: Thu, 31 Jul 2003 07:08:42 +0000
Subject: fix a proto

---
 src/lib/libc/stdlib/atexit.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'src')

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 @@
-/*	$OpenBSD: atexit.h,v 1.5 2002/08/30 07:58:07 dhartmei Exp $ */
+/*	$OpenBSD: atexit.h,v 1.6 2003/07/31 07:08:42 deraadt Exp $ */
 
 /*
  * Copyright (c) 2002 Daniel Hartmeier
@@ -34,7 +34,7 @@ struct atexit {
 	struct atexit *next;		/* next in list */
 	int ind;			/* next index in this table */
 	int max;			/* max entries >= ATEXIT_SIZE */
-	void (*fns[1])();		/* the table itself */
+	void (*fns[1])(void);		/* the table itself */
 };
 
 extern int __atexit_invalid;
-- 
cgit v1.2.3-55-g6feb