aboutsummaryrefslogtreecommitdiff
path: root/libbb/bb_pwd.c
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-12 15:21:32 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-12 15:21:32 +0000
commit645a928b37cf8f09f3d0648030d5b454753428fc (patch)
tree5ddadc40c59ab1c9243329c2e914e67b4dadd7a5 /libbb/bb_pwd.c
parentb29a4d546bb6e8bb718b2c40b00b48ea7288c976 (diff)
downloadbusybox-w32-645a928b37cf8f09f3d0648030d5b454753428fc.tar.gz
busybox-w32-645a928b37cf8f09f3d0648030d5b454753428fc.tar.bz2
busybox-w32-645a928b37cf8f09f3d0648030d5b454753428fc.zip
bb_dev_null
git-svn-id: svn://busybox.net/trunk/busybox@11845 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/bb_pwd.c')
-rw-r--r--libbb/bb_pwd.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/libbb/bb_pwd.c b/libbb/bb_pwd.c
index 9ce1c7150..cbd72af2f 100644
--- a/libbb/bb_pwd.c
+++ b/libbb/bb_pwd.c
@@ -7,6 +7,7 @@
7 * Licensed under the GPL v2, see the file LICENSE in this tarball. 7 * Licensed under the GPL v2, see the file LICENSE in this tarball.
8 */ 8 */
9 9
10#include "libbb.h"
10 11
11#ifdef L_bb_getgrgid 12#ifdef L_bb_getgrgid
12 /* Hacked by Tito Ragusa (c) 2004 <farmatito@tiscali.it> to make it more 13 /* Hacked by Tito Ragusa (c) 2004 <farmatito@tiscali.it> to make it more
@@ -26,7 +27,6 @@
26 * the program exits. 27 * the program exits.
27 */ 28 */
28 29
29#include "libbb.h"
30#include "grp_.h" 30#include "grp_.h"
31 31
32/* gets a groupname given a gid */ 32/* gets a groupname given a gid */
@@ -42,7 +42,6 @@ char * bb_getgrgid(char *group, long gid, int bufsize)
42#ifdef L_bb_xgetgrnam 42#ifdef L_bb_xgetgrnam
43#include <stdio.h> 43#include <stdio.h>
44#include <string.h> 44#include <string.h>
45#include "libbb.h"
46#include "pwd_.h" 45#include "pwd_.h"
47#include "grp_.h" 46#include "grp_.h"
48 47
@@ -63,7 +62,6 @@ long bb_xgetgrnam(const char *name)
63#ifdef L_bb_xgetpwnam 62#ifdef L_bb_xgetpwnam
64#include <stdio.h> 63#include <stdio.h>
65#include <string.h> 64#include <string.h>
66#include "libbb.h"
67#include "pwd_.h" 65#include "pwd_.h"
68#include "grp_.h" 66#include "grp_.h"
69 67
@@ -99,7 +97,6 @@ long bb_xgetpwnam(const char *name)
99 * the program exits. 97 * the program exits.
100 */ 98 */
101 99
102#include "libbb.h"
103#include "pwd_.h" 100#include "pwd_.h"
104 101
105/* gets a username given a uid */ 102/* gets a username given a uid */
@@ -129,7 +126,6 @@ char * bb_getpwuid(char *name, long uid, int bufsize)
129 126
130#include <stdio.h> 127#include <stdio.h>
131#include <assert.h> 128#include <assert.h>
132#include "libbb.h"
133 129
134 130
135/* internal function for bb_getpwuid and bb_getgrgid */ 131/* internal function for bb_getpwuid and bb_getgrgid */