[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/syswait.h,v
From: |
Dan Nicolaescu |
Subject: |
[Emacs-diffs] Changes to emacs/src/syswait.h,v |
Date: |
Thu, 31 Jul 2008 05:34:20 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Changes by: Dan Nicolaescu <dann> 08/07/31 05:33:56
Index: src/syswait.h
===================================================================
RCS file: /cvsroot/emacs/emacs/src/syswait.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -b -r1.26 -r1.27
--- src/syswait.h 12 Jul 2008 05:31:22 -0000 1.26
+++ src/syswait.h 31 Jul 2008 05:33:54 -0000 1.27
@@ -24,8 +24,6 @@
#ifndef EMACS_SYSWAIT_H
#define EMACS_SYSWAIT_H
-#ifndef VMS
-
#include <sys/types.h>
#ifdef HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid definitions. */
@@ -57,21 +55,6 @@
#undef WRETCODE
#define WRETCODE(status) WEXITSTATUS (status)
-#else /* VMS */
-
-#define WIFSTOPPED(w) 0
-#define WIFSIGNALED(w) 0
-#define WIFEXITED(w) ((w) != -1)
-#define WRETCODE(w) (w)
-#define WSTOPSIG(w) (w)
-#define WCOREDUMP(w) 0
-#define WTERMSIG(w) (w)
-#include <ssdef.h>
-#include <iodef.h>
-#include <clidef.h>
-#include "vmsproc.h"
-
-#endif /* VMS */
#endif /* EMACS_SYSWAIT_H */