Changeset 368 for trunk/src/gmake/kmkbuiltin/ln.c
- Timestamp:
- Dec 17, 2005, 6:31:29 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/kmkbuiltin/ln.c
r367 r368 53 53 #include <unistd.h> 54 54 55 int fflag; /* Unlink existing files. */56 int hflag; /* Check new name for symlink first. */57 int iflag; /* Interactive mode. */58 int sflag; /* Symbolic, not hard, link. */59 int vflag; /* Verbose output. */55 static int fflag; /* Unlink existing files. */ 56 static int hflag; /* Check new name for symlink first. */ 57 static int iflag; /* Interactive mode. */ 58 static int sflag; /* Symbolic, not hard, link. */ 59 static int vflag; /* Verbose output. */ 60 60 /* System link call. */ 61 int (*linkf)(const char *, const char *);62 char linkch;63 64 int linkit(const char *, const char *, int);65 void usage(void);61 static int (*linkf)(const char *, const char *); 62 static char linkch; 63 64 static int linkit(const char *, const char *, int); 65 static void usage(void); 66 66 67 67 int 68 main(int argc, char *argv[])68 kmk_builtin_ln(int argc, char *argv[]) 69 69 { 70 70 struct stat sb;
Note:
See TracChangeset
for help on using the changeset viewer.