comparison lib/getusershell.c @ 653:b63f146fd963

indent cpp-directives
author Jim Meyering <jim@meyering.net>
date Mon, 15 Jul 1996 03:56:06 +0000
parents 242f0fe39aa7
children 8f31f8f77f98
comparison
equal deleted inserted replaced
652:46c7775739ce 653:b63f146fd963
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
17 17
18 /* Written by David MacKenzie <djm@gnu.ai.mit.edu> */ 18 /* Written by David MacKenzie <djm@gnu.ai.mit.edu> */
19 19
20 #ifdef HAVE_CONFIG_H 20 #ifdef HAVE_CONFIG_H
21 #include <config.h> 21 # include <config.h>
22 #endif 22 #endif
23 23
24 #ifndef SHELLS_FILE 24 #ifndef SHELLS_FILE
25 /* File containing a list of nonrestricted shells, one per line. */ 25 /* File containing a list of nonrestricted shells, one per line. */
26 #define SHELLS_FILE "/etc/shells" 26 # define SHELLS_FILE "/etc/shells"
27 #endif 27 #endif
28 28
29 #include <stdio.h> 29 #include <stdio.h>
30 #include <ctype.h> 30 #include <ctype.h>
31 31
32 #ifdef STDC_HEADERS 32 #ifdef STDC_HEADERS
33 #include <stdlib.h> 33 # include <stdlib.h>
34 #else 34 #else
35 char *malloc (); 35 char *malloc ();
36 char *realloc (); 36 char *realloc ();
37 #endif 37 #endif
38 38