aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-11 03:40:10 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-11 03:40:10 +0000
commitdece80f47b1fd81d9c2d4ed4efa95b2433cd4111 (patch)
tree519524878c289c0b59539887c347958766f96310
parent4b8bb2d4b79470de2286d1c6575759ac5496bc71 (diff)
downloadbusybox-w32-dece80f47b1fd81d9c2d4ed4efa95b2433cd4111.tar.gz
busybox-w32-dece80f47b1fd81d9c2d4ed4efa95b2433cd4111.tar.bz2
busybox-w32-dece80f47b1fd81d9c2d4ed4efa95b2433cd4111.zip
Fixup header file ordering
git-svn-id: svn://busybox.net/trunk/busybox@6157 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--libpwdgrp/getpwuid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpwdgrp/getpwuid.c b/libpwdgrp/getpwuid.c
index 23ff3aa88..7a04b67ca 100644
--- a/libpwdgrp/getpwuid.c
+++ b/libpwdgrp/getpwuid.c
@@ -22,8 +22,8 @@
22#include <unistd.h> 22#include <unistd.h>
23#include <fcntl.h> 23#include <fcntl.h>
24 24
25#include "pwd_.h"
26#include "busybox.h" 25#include "busybox.h"
26#include "pwd_.h"
27 27
28struct passwd *getpwuid(uid_t uid) 28struct passwd *getpwuid(uid_t uid)
29{ 29{