X-Git-Url: https://git.saurik.com/apple/file_cmds.git/blobdiff_plain/864a4b6e4495e8bb9744303352b4f19fccc90738..refs/heads/master:/cp/extern.h?ds=inline diff --git a/cp/extern.h b/cp/extern.h index 10a5211..521091d 100644 --- a/cp/extern.h +++ b/cp/extern.h @@ -30,6 +30,9 @@ * $FreeBSD: src/bin/cp/extern.h,v 1.20 2005/09/05 04:36:08 csjp Exp $ */ +#ifndef _CP_EXTERN_H_ +#define _CP_EXTERN_H_ + typedef struct { char *p_end; /* pointer to NULL at end of path */ char *target_end; /* pointer to end of target base */ @@ -41,6 +44,7 @@ extern int fflag, iflag, nflag, pflag, vflag; #ifdef __APPLE__ extern int Xflag; #endif /* __APPLE__ */ +extern int cflag; extern volatile sig_atomic_t info; __BEGIN_DECLS @@ -53,3 +57,5 @@ int preserve_dir_acls(struct stat *, char *, char *); int preserve_fd_acls(int, int); void usage(void); __END_DECLS + +#endif /* _CP_EXTERN_H_ */