diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:14:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:14:08 +0000 |
commit | cbe31dace5fb24304694d399b9eb267fbe752516 (patch) | |
tree | 49d1bb722d95eb1aded6b5d354ac86e56c481c10 /util-linux/nfsmount.c | |
parent | 94456f598417f2f61edb97b5ab67ddfdc408ad10 (diff) | |
download | busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.tar.gz busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.tar.bz2 busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.zip |
It turns out that DODMALLOC was broken when I reorganized busybox.h
header file usage before the 0.49 release. To fix it, I had to move
the '#include "busybox.h"' to the end of the list of #include files.
-Erik
Diffstat (limited to 'util-linux/nfsmount.c')
-rw-r--r-- | util-linux/nfsmount.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/util-linux/nfsmount.c b/util-linux/nfsmount.c index ae44f3207..aee496980 100644 --- a/util-linux/nfsmount.c +++ b/util-linux/nfsmount.c | |||
@@ -33,25 +33,25 @@ | |||
33 | * nfsmount.c,v 1.1.1.1 1993/11/18 08:40:51 jrs Exp | 33 | * nfsmount.c,v 1.1.1.1 1993/11/18 08:40:51 jrs Exp |
34 | */ | 34 | */ |
35 | 35 | ||
36 | #include "busybox.h" | ||
37 | #undef FALSE | ||
38 | #undef TRUE | ||
39 | #include <unistd.h> | 36 | #include <unistd.h> |
40 | #include <stdio.h> | 37 | #include <stdio.h> |
41 | #include <string.h> | 38 | #include <string.h> |
42 | #include <errno.h> | 39 | #include <errno.h> |
43 | #include <netdb.h> | 40 | #include <netdb.h> |
44 | #include <rpc/rpc.h> | ||
45 | #include <rpc/pmap_prot.h> | ||
46 | #include <rpc/pmap_clnt.h> | ||
47 | #include <sys/socket.h> | 41 | #include <sys/socket.h> |
48 | #include <time.h> | 42 | #include <time.h> |
49 | #include <sys/utsname.h> | 43 | #include <sys/utsname.h> |
50 | #include <netinet/in.h> | 44 | #include <netinet/in.h> |
51 | #include <arpa/inet.h> | 45 | #include <arpa/inet.h> |
52 | 46 | #include <stdlib.h> | |
53 | #include "nfsmount.h" | 47 | #include "busybox.h" |
48 | #undef TRUE | ||
49 | #undef FALSE | ||
50 | #include <rpc/rpc.h> | ||
51 | #include <rpc/pmap_prot.h> | ||
52 | #include <rpc/pmap_clnt.h> | ||
54 | #include <linux/nfs.h> /* For the kernels nfs stuff */ | 53 | #include <linux/nfs.h> /* For the kernels nfs stuff */ |
54 | #include "nfsmount.h" | ||
55 | 55 | ||
56 | #ifndef NFS_FHSIZE | 56 | #ifndef NFS_FHSIZE |
57 | static const int NFS_FHSIZE = 32; | 57 | static const int NFS_FHSIZE = 32; |