Browse Source

fix a proto

OPENBSD_3_4
deraadt 21 years ago
parent
commit
ad75fc4729
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/lib/libc/stdlib/atexit.h

+ 2
- 2
src/lib/libc/stdlib/atexit.h View File

@ -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;


Loading…
Cancel
Save