some minor KNF
This commit is contained in:
parent
6d4fa106d1
commit
e95e818cbd
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: stdlib.h,v 1.26 1997/07/13 18:01:53 christos Exp $ */
|
/* $NetBSD: stdlib.h,v 1.27 1997/07/14 00:30:28 mikel Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1990 The Regents of the University of California.
|
* Copyright (c) 1990 The Regents of the University of California.
|
||||||
|
@ -85,7 +85,8 @@ typedef struct {
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
|
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
__dead void abort __P((void));
|
__dead void
|
||||||
|
abort __P((void));
|
||||||
int abs __P((int));
|
int abs __P((int));
|
||||||
int atexit __P((void (*)(void)));
|
int atexit __P((void (*)(void)));
|
||||||
double atof __P((const char *));
|
double atof __P((const char *));
|
||||||
|
@ -95,7 +96,8 @@ void *bsearch __P((const void *, const void *, size_t,
|
||||||
size_t, int (*)(const void *, const void *)));
|
size_t, int (*)(const void *, const void *)));
|
||||||
void *calloc __P((size_t, size_t));
|
void *calloc __P((size_t, size_t));
|
||||||
div_t div __P((int, int));
|
div_t div __P((int, int));
|
||||||
__dead void exit __P((int));
|
__dead void
|
||||||
|
exit __P((int));
|
||||||
void free __P((void *));
|
void free __P((void *));
|
||||||
char *getenv __P((const char *));
|
char *getenv __P((const char *));
|
||||||
long labs __P((long));
|
long labs __P((long));
|
||||||
|
@ -122,9 +124,9 @@ size_t wcstombs __P((char *, const wchar_t *, size_t));
|
||||||
|
|
||||||
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
|
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
|
||||||
#if defined(alloca) && (alloca == __builtin_alloca) && (__GNUC__ < 2)
|
#if defined(alloca) && (alloca == __builtin_alloca) && (__GNUC__ < 2)
|
||||||
void *alloca __P((int)); /* built-in for gcc */
|
void *alloca __P((int)); /* built-in for gcc */
|
||||||
#else
|
#else
|
||||||
void *alloca __P((size_t));
|
void *alloca __P((size_t));
|
||||||
#endif /* __GNUC__ */
|
#endif /* __GNUC__ */
|
||||||
|
|
||||||
char *getbsize __P((int *, long *));
|
char *getbsize __P((int *, long *));
|
||||||
|
@ -189,10 +191,11 @@ void lcong48 __P((unsigned short[7]));
|
||||||
long lrand48 __P((void));
|
long lrand48 __P((void));
|
||||||
long mrand48 __P((void));
|
long mrand48 __P((void));
|
||||||
long nrand48 __P((unsigned short[3]));
|
long nrand48 __P((unsigned short[3]));
|
||||||
unsigned short *seed48 __P((unsigned short[3]));
|
unsigned short *
|
||||||
|
seed48 __P((unsigned short[3]));
|
||||||
void srand48 __P((long));
|
void srand48 __P((long));
|
||||||
#endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
|
#endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
#endif /* _STDLIB_H_ */
|
#endif /* !_STDLIB_H_ */
|
||||||
|
|
Loading…
Reference in New Issue