diff options
author | bde <bde@FreeBSD.org> | 2002-02-23 17:05:32 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2002-02-23 17:05:32 +0000 |
commit | be1787bc6d7c04fe57c15b07a7ced586148f90f9 (patch) | |
tree | b32ba78b7a1800c8b76efadfb2473c735798cd4f /bin/cp | |
parent | 80535be2bab0ac25be60907d2bb4ae9815393277 (diff) | |
download | FreeBSD-src-be1787bc6d7c04fe57c15b07a7ced586148f90f9.zip FreeBSD-src-be1787bc6d7c04fe57c15b07a7ced586148f90f9.tar.gz |
Fixed some style bugs in revs 1.1 and 1.4.
Diffstat (limited to 'bin/cp')
-rw-r--r-- | bin/cp/extern.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/cp/extern.h b/bin/cp/extern.h index 74536c3..9f7ca4a 100644 --- a/bin/cp/extern.h +++ b/bin/cp/extern.h @@ -35,13 +35,13 @@ */ typedef struct { - char *p_end; /* pointer to NULL at end of path */ - char *target_end; /* pointer to end of target base */ - char p_path[PATH_MAX]; /* pointer to the start of a path */ + char *p_end; /* pointer to NULL at end of path */ + char *target_end; /* pointer to end of target base */ + char p_path[PATH_MAX]; /* pointer to the start of a path */ } PATH_T; extern PATH_T to; -extern int iflag, pflag, fflag; +extern int fflag, iflag, pflag; __BEGIN_DECLS int copy_fifo(struct stat *, int); |