moving prototypes to lib.h

Change-Id: If53d3f5ee761b10e0f3d4346a0c5b39ba7901c65
This commit is contained in:
2013-04-18 11:08:16 +02:00
parent 55dcce66c6
commit 58f5d8dd5e
13 changed files with 34 additions and 24 deletions

View File

@@ -66,7 +66,7 @@ struct statvfs {
unsigned long f_bsize; /* File system block size. */
unsigned long f_frsize; /* Fundamental file system block size. */
fsblkcnt_t f_blocks; /* Total number of blocks on file system */
/* in units of f_frsize. */
/* in units of f_frsize. */
fsblkcnt_t f_bfree; /* Total number of free blocks. */
fsblkcnt_t f_bavail; /* Number of free blocks available to */
/* non-privileged process. */

View File

@@ -41,6 +41,7 @@
#if defined(_STANDALONE)
/* LSC: In NetBSD this gets pulled in through libkern.h */
#include <sys/null.h>
uint32_t crc32(uint32_t, const uint8_t *, size_t);
#endif /* defined(_STANDALONE) */
#endif /* defined(__minix) */