]> git.saurik.com Git - apple/file_cmds.git/blobdiff - cp/extern.h
file_cmds-212.1.tar.gz
[apple/file_cmds.git] / cp / extern.h
index 7ae079ed04782571788b8d9faf8e947f38bb8028..10a52117f36112717557462b4e17c3b4488b3cc7 100644 (file)
@@ -1,5 +1,3 @@
-/*     $NetBSD: extern.h,v 1.4 1998/07/28 03:47:14 mycroft Exp $       */
-
 /*-
  * Copyright (c) 1991, 1993, 1994
  *     The Regents of the University of California.  All rights reserved.
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
  * 4. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  * SUCH DAMAGE.
  *
  *     @(#)extern.h    8.2 (Berkeley) 4/1/94
+ * $FreeBSD: src/bin/cp/extern.h,v 1.20 2005/09/05 04:36:08 csjp Exp $
  */
 
 typedef struct {
-       char *p_end;                    /* pointer to NULL at end of path */
-       char *target_end;               /* pointer to end of target base */
-       char p_path[MAXPATHLEN + 1];    /* 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 uid_t myuid;
-extern int iflag, pflag, fflag;
-extern mode_t myumask;
-
-#include <sys/cdefs.h>
+extern int fflag, iflag, nflag, pflag, vflag;
+#ifdef __APPLE__
+extern int Xflag;
+#endif /* __APPLE__ */
+extern volatile sig_atomic_t info;
 
 __BEGIN_DECLS
-int    copy_fifo __P((struct stat *, int));
-int    copy_file __P((FTSENT *, int));
-int    copy_link __P((FTSENT *, int));
-int    copy_special __P((struct stat *, int));
-int    set_utimes __P((const char *, struct stat *));
-int    setfile __P((struct stat *, int));
-void   usage __P((void));
+int    copy_fifo(struct stat *, int);
+int    copy_file(const FTSENT *, int);
+int    copy_link(const FTSENT *, int);
+int    copy_special(struct stat *, int);
+int    setfile(struct stat *, int);
+int    preserve_dir_acls(struct stat *, char *, char *);
+int    preserve_fd_acls(int, int);
+void   usage(void);
 __END_DECLS