4.4BSD snapshot (revision 8.1)
[unix-history] / usr / src / include / utime.h
index 2bad628..596649f 100644 (file)
@@ -1,19 +1,24 @@
 /*-
 /*-
- * Copyright (c) 1990 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1990, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)utime.h     5.1 (Berkeley) %G%
+ *     @(#)utime.h     8.1 (Berkeley) %G%
  */
 
  */
 
+#ifndef        _UTIME_H_
+#define        _UTIME_H_
+
 struct utimbuf {
        time_t actime;          /* Access time */
        time_t modtime;         /* Modification time */
 };
 
 struct utimbuf {
        time_t actime;          /* Access time */
        time_t modtime;         /* Modification time */
 };
 
-#if __STDC__ || c_plusplus
-int utime(char *, struct utimbuf *);
-#else
-int utime();
-#endif
+#include <sys/cdefs.h>
+
+__BEGIN_DECLS
+int utime __P((const char *, const struct utimbuf *));
+__END_DECLS
+
+#endif /* !_UTIME_H_ */