From ad75fc47296c2d61752f9af46c9d37e87ea6bbb6 Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Thu, 31 Jul 2003 07:08:42 +0000 Subject: [PATCH] fix a proto --- src/lib/libc/stdlib/atexit.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/libc/stdlib/atexit.h b/src/lib/libc/stdlib/atexit.h index 28bf3a7f..21b0c2e5 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;