]> code.delx.au - gnu-emacs/blobdiff - src/s/usg5-3.h
Fix a typo.
[gnu-emacs] / src / s / usg5-3.h
index 2a14523bdebe31af60dfc06a4091f8beca11e012..de1a20d265832942b3bf7512fae10276e812f1d3 100644 (file)
@@ -1,11 +1,11 @@
 /* Definitions file for GNU Emacs running on AT&T's System V Release 3
-   Copyright (C) 1987 Free Software Foundation, Inc.
+   Copyright (C) 1987, 1999 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 1, or (at your option)
+the Free Software Foundation; either version 2, or (at your option)
 any later version.
 
 GNU Emacs is distributed in the hope that it will be useful,
@@ -15,7 +15,8 @@ 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, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.  */
 
 
 /*
@@ -56,22 +57,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define HAVE_TERMIO
 
-/*
- *     Define HAVE_TIMEVAL if the system supports the BSD style clock values.
- *     Look in <sys/time.h> for a timeval structure.
- */
-
-/* #define HAVE_TIMEVAL */
-/*
- *     Define HAVE_SELECT if the system supports the `select' system call.
- */
-
-/* SVr3.2 ports of X include an emulation of select in the libraries.  */
-#ifdef HAVE_X_WINDOWS
-#define HAVE_SELECT
-#endif
-
 /*
  *     Define HAVE_PTYS if the system supports pty devices.
  */
@@ -133,10 +118,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 /* #define SHORTNAMES */
 
-/* We use the Berkeley (and usg5.2.2) interface to nlist.  */
-
-#define NLIST_STRUCT
-
 /* The file containing the kernel's symbol table is called /unix.  */
 
 #define KERNEL_FILE "/unix"
@@ -166,25 +147,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define _setjmp setjmp
 #define _longjmp longjmp
 
-/* On USG systems the system calls are interruptible by signals
- that the user program has elected to catch.  Thus the system call
- must be retried in these cases.  To handle this without massive
- changes in the source code, we remap the standard system call names
- to names for our own functions in sysdep.c that do the system call
- with retries. */
-
-#define read sys_read
-#define write sys_write
-#define open sys_open
-#define close sys_close
-
-#define INTERRUPTIBLE_OPEN
-#define INTERRUPTIBLE_CLOSE
-#define INTERRUPTIBLE_IO
-
 /* On USG systems these have different names */
+#ifndef HAVE_INDEX
 #define index strchr
+#endif /* ! defined (HAVE_INDEX) */
+#ifndef HAVE_RINDEX
 #define rindex strrchr
+#endif /* ! defined (HAVE_RINDEX) */
 
 /* USG systems tend to put everything declared static
    into the initialized data area, which becomes pure after dumping Emacs.
@@ -223,10 +192,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #define BROKEN_TIOCGWINSZ
 
-/* SVr3 does not have utimes(2) */
-
-#define USE_UTIME
-
 /* If we're using the System V X port, BSD bstring functions will be handy */
 
 #ifdef HAVE_X_WINDOWS
@@ -240,3 +205,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 /* On USG systems signal handlers return void */
 
 #define SIGTYPE void
+
+/* arch-tag: 2bca65fd-f015-44b9-a2aa-9f8170ce89ca
+   (do not change this comment) */