diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-08 11:47:52 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-08 11:47:52 +0000 |
commit | 0822b9e3ecfaf76f57a55a57b6535c0528abc007 (patch) | |
tree | c4733a1fdb6d57fbe7a24163cc9cab728df2aa6c | |
parent | d1d4f2a825fc95aa7d388419bdeee4e2a2d602b6 (diff) | |
download | busybox-w32-0822b9e3ecfaf76f57a55a57b6535c0528abc007.tar.gz busybox-w32-0822b9e3ecfaf76f57a55a57b6535c0528abc007.tar.bz2 busybox-w32-0822b9e3ecfaf76f57a55a57b6535c0528abc007.zip |
Change #include order to fix warning
git-svn-id: svn://busybox.net/trunk/busybox@6134 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | libpwdgrp/pwent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpwdgrp/pwent.c b/libpwdgrp/pwent.c index 133fa4564..4a80093e8 100644 --- a/libpwdgrp/pwent.c +++ b/libpwdgrp/pwent.c | |||
@@ -21,10 +21,11 @@ | |||
21 | #include <unistd.h> | 21 | #include <unistd.h> |
22 | #include <stdlib.h> | 22 | #include <stdlib.h> |
23 | #include <errno.h> | 23 | #include <errno.h> |
24 | #include "pwd_.h" | ||
25 | #include <fcntl.h> | 24 | #include <fcntl.h> |
26 | 25 | ||
27 | #include "busybox.h" | 26 | #include "busybox.h" |
27 | #include "pwd_.h" | ||
28 | |||
28 | /* | 29 | /* |
29 | * setpwent(), endpwent(), and getpwent() are included in the same object | 30 | * setpwent(), endpwent(), and getpwent() are included in the same object |
30 | * file, since one cannot be used without the other two, so it makes sense to | 31 | * file, since one cannot be used without the other two, so it makes sense to |