summaryrefslogtreecommitdiff
path: root/libpwdgrp/shadow.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-12-07 23:14:40 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-12-07 23:14:40 +0000
commit4e05b9b0431aff7b44f57c333288401caaf86300 (patch)
tree82036519c3af41b6bc4bca084384320fc2c6d6e3 /libpwdgrp/shadow.c
parent0325a1c9e3ef37017d4eeac7f61300a28fe4dc5b (diff)
downloadbusybox-w32-4e05b9b0431aff7b44f57c333288401caaf86300.tar.gz
busybox-w32-4e05b9b0431aff7b44f57c333288401caaf86300.tar.bz2
busybox-w32-4e05b9b0431aff7b44f57c333288401caaf86300.zip
include "busybox" after the libc includes tofix compile errors
Diffstat (limited to 'libpwdgrp/shadow.c')
-rw-r--r--libpwdgrp/shadow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpwdgrp/shadow.c b/libpwdgrp/shadow.c
index c79417383..2d2b108f2 100644
--- a/libpwdgrp/shadow.c
+++ b/libpwdgrp/shadow.c
@@ -33,12 +33,12 @@
33 * lckpwdf ulckpwdf 33 * lckpwdf ulckpwdf
34 */ 34 */
35 35
36#include "busybox.h"
37
38#include <stdio.h> 36#include <stdio.h>
39#include <stdlib.h> 37#include <stdlib.h>
40#include <string.h> 38#include <string.h>
41#include <unistd.h> 39#include <unistd.h>
40
41#include "busybox.h"
42#include "shadow_.h" 42#include "shadow_.h"
43 43
44static FILE *shadow; 44static FILE *shadow;