diff options
author | Glenn L McGrath | 2002-12-07 23:14:40 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-12-07 23:14:40 +0000 |
commit | 4e05b9b0431aff7b44f57c333288401caaf86300 (patch) | |
tree | 82036519c3af41b6bc4bca084384320fc2c6d6e3 /libpwdgrp/pwent.c | |
parent | 0325a1c9e3ef37017d4eeac7f61300a28fe4dc5b (diff) | |
download | busybox-4e05b9b0431aff7b44f57c333288401caaf86300.zip busybox-4e05b9b0431aff7b44f57c333288401caaf86300.tar.gz |
include "busybox" after the libc includes tofix compile errors
Diffstat (limited to 'libpwdgrp/pwent.c')
-rw-r--r-- | libpwdgrp/pwent.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libpwdgrp/pwent.c b/libpwdgrp/pwent.c index 1f42397..133fa45 100644 --- a/libpwdgrp/pwent.c +++ b/libpwdgrp/pwent.c @@ -18,14 +18,13 @@ * */ -#include "busybox.h" - #include <unistd.h> #include <stdlib.h> #include <errno.h> #include "pwd_.h" #include <fcntl.h> +#include "busybox.h" /* * setpwent(), endpwent(), and getpwent() are included in the same object * file, since one cannot be used without the other two, so it makes sense to |