Changeset 1214 for trunk/src/kash/main.c
- Timestamp:
- Oct 7, 2007, 10:39:58 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/main.c
r1207 r1214 33 33 */ 34 34 35 #ifdef HAVE_SYS_CDEFS_H 36 #include <sys/cdefs.h> 37 #endif 35 #if 0 38 36 #ifndef lint 39 37 __COPYRIGHT("@(#) Copyright (c) 1991, 1993\n\ … … 42 40 43 41 #ifndef lint 44 #if 045 42 static char sccsid[] = "@(#)main.c 8.7 (Berkeley) 7/19/95"; 46 43 #else 47 44 __RCSID("$NetBSD: main.c,v 1.48 2003/09/14 12:09:29 jmmv Exp $"); 48 #endif49 45 #endif /* not lint */ 46 47 #endif 50 48 51 49 #include <errno.h> 52 50 #include <stdio.h> 53 #include <signal.h>54 51 #include <sys/stat.h> 55 #include <unistd.h>56 52 #include <locale.h> 57 #include <fcntl.h>58 53 59 54 … … 122 117 /* 123 118 * Check for --version and --help. 124 119 */ 125 120 if (argc > 1 && argv[1][0] == '-' && argv[1][1] == '-') { 126 121 if (!strcmp(argv[1], "--help"))
Note:
See TracChangeset
for help on using the changeset viewer.