summaryrefslogtreecommitdiff
path: root/mac/inc/utime.h
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2008-02-04 17:27:36 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2008-02-04 17:27:36 +0000
commitc0bc797888951a468475c76d3cfa00c2a2a92547 (patch)
treee69d397163f86a2ca13335bb2ec190150a5e7707 /mac/inc/utime.h
parente3a77b22d272d31cedbd9eab9b37feda0e13f8d6 (diff)
downloademacs-c0bc797888951a468475c76d3cfa00c2a2a92547.tar.gz
* make-dist: Remove references to files in mac/ that have been
deleted. * README: * INSTALL: Only mention MacOSX. * cw6-mcp.xml: * make-package: * makefile.MPW: * inc/alloca.h: * inc/config.h: * inc/defs-cw6.h: * inc/dirent.h: * inc/epaths.h: * inc/grp.h: * inc/m-mac.h: * inc/pwd.h: * inc/s-mac.h: * inc/termio.h: * inc/utime.h: * inc/utsname.h: * inc/sys/file.h: * inc/sys/ioctl.h: * inc/sys/param.h: * inc/sys/stat.h: * inc/sys/time.h: * inc/sys/types.h: * src/EmacsMPW.r: Remove files for no longer supported pre-MacOSX systems.
Diffstat (limited to 'mac/inc/utime.h')
-rw-r--r--mac/inc/utime.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/mac/inc/utime.h b/mac/inc/utime.h
deleted file mode 100644
index 4a8d0428f63..00000000000
--- a/mac/inc/utime.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* Replacement utime.h file for building GNU Emacs on the Macintosh.
- Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
- 2006, 2007, 2008 Free Software Foundation, Inc.
-
-This file is part of GNU Emacs.
-
-GNU Emacs is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 3, or (at your option)
-any later version.
-
-GNU Emacs is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU Emacs; see the file COPYING. If not, write to
-the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-Boston, MA 02110-1301, USA. */
-
-/* Contributed by Andrew Choi (akochoi@mac.com). */
-
-#ifndef _UTIME_H_
-#define _UTIME_H_
-
-#include <time.h>
-
-#define _mac_unix_epoch_offset_ (365L * 4L) * 24L * 60L * 60L
-
-struct utimbuf {
- time_t actime; /* access time (ignored on the Mac) */
- time_t modtime; /* modification time */
-};
-
-int utime(const char *path, const struct utimbuf *buf);
-
-#endif
-
-/* arch-tag: 52dc3f6b-6122-4568-8f09-a5a56de6a324
- (do not change this comment) */