diff options
author | "Vladimir N. Oleynik" | 2005-10-12 15:21:32 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" | 2005-10-12 15:21:32 +0000 |
commit | 86a1073e0bfa608defbfaa43d94a537c5e700efe (patch) | |
tree | 5ddadc40c59ab1c9243329c2e914e67b4dadd7a5 /libbb/bb_pwd.c | |
parent | 3ade65fc0451e898f3750a581c9a12abfe04b57e (diff) | |
download | busybox-86a1073e0bfa608defbfaa43d94a537c5e700efe.zip busybox-86a1073e0bfa608defbfaa43d94a537c5e700efe.tar.gz |
bb_dev_null
Diffstat (limited to 'libbb/bb_pwd.c')
-rw-r--r-- | libbb/bb_pwd.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libbb/bb_pwd.c b/libbb/bb_pwd.c index 9ce1c71..cbd72af 100644 --- a/libbb/bb_pwd.c +++ b/libbb/bb_pwd.c @@ -7,6 +7,7 @@ * Licensed under the GPL v2, see the file LICENSE in this tarball. */ +#include "libbb.h" #ifdef L_bb_getgrgid /* Hacked by Tito Ragusa (c) 2004 <farmatito@tiscali.it> to make it more @@ -26,7 +27,6 @@ * the program exits. */ -#include "libbb.h" #include "grp_.h" /* gets a groupname given a gid */ @@ -42,7 +42,6 @@ char * bb_getgrgid(char *group, long gid, int bufsize) #ifdef L_bb_xgetgrnam #include <stdio.h> #include <string.h> -#include "libbb.h" #include "pwd_.h" #include "grp_.h" @@ -63,7 +62,6 @@ long bb_xgetgrnam(const char *name) #ifdef L_bb_xgetpwnam #include <stdio.h> #include <string.h> -#include "libbb.h" #include "pwd_.h" #include "grp_.h" @@ -99,7 +97,6 @@ long bb_xgetpwnam(const char *name) * the program exits. */ -#include "libbb.h" #include "pwd_.h" /* gets a username given a uid */ @@ -129,7 +126,6 @@ char * bb_getpwuid(char *name, long uid, int bufsize) #include <stdio.h> #include <assert.h> -#include "libbb.h" /* internal function for bb_getpwuid and bb_getgrgid */ |