diff src/syscalls.cc @ 2457:5be3f6f5986a

[project @ 1996-11-03 02:54:44 by jwe]
author jwe
date Sun, 03 Nov 1996 02:55:21 +0000
parents f667d7ec08b9
children 0c788e9b53b8
line wrap: on
line diff
--- a/src/syscalls.cc
+++ b/src/syscalls.cc
@@ -85,7 +85,7 @@
   return m;
 }
 
-DEFUN(dup2, args, ,
+DEFUN (dup2, args, ,
  "fid = dup2 (old, new): duplicate a file descriptor")
 {
   double retval = -1.0;
@@ -124,7 +124,7 @@
   return retval;
 }
 
-DEFUN(exec, args, ,
+DEFUN (exec, args, ,
  "exec (file, args): replace current process with a new process")
 {
   double retval = -1.0;
@@ -192,7 +192,7 @@
   return retval;
 }
 
-DEFUN(fcntl, args, ,
+DEFUN (fcntl, args, ,
  "fcntl (fid, request, argument): control open file descriptors")
 {
   double retval = -1.0;
@@ -233,7 +233,7 @@
   return retval;
 }
 
-DEFUN(fork, args, ,
+DEFUN (fork, args, ,
  "fork (): create a copy of the current process")
 {
   double retval = -1.0;
@@ -252,7 +252,7 @@
   return retval;
 }
 
-DEFUN(getpgrp, args, ,
+DEFUN (getpgrp, args, ,
   "pgid = getpgrp (): return the process group id of the current process")
 {
   double retval = -1.0;
@@ -271,7 +271,7 @@
   return retval;
 }
 
-DEFUN(getpid, args, ,
+DEFUN (getpid, args, ,
   "pid = getpid (): return the process id of the current process")
 {
   double retval = -1.0;
@@ -290,7 +290,7 @@
   return retval;
 }
 
-DEFUN(getppid, args, ,
+DEFUN (getppid, args, ,
   "pid = getppid (): return the process id of the parent process")
 {
   double retval = -1.0;