changeset 2461:7d5338788d69

[project @ 1996-11-03 04:01:34 by jwe]
author jwe
date Sun, 03 Nov 1996 04:01:34 +0000
parents 4690fe4c0333
children 5edc0b8b0543
files src/getpwent.cc src/getrusage.cc src/time.cc
diffstat 3 files changed, 11 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/src/getpwent.cc	Sun Nov 03 03:49:55 1996 +0000
+++ b/src/getpwent.cc	Sun Nov 03 04:01:34 1996 +0000
@@ -79,7 +79,7 @@
 }
 #endif
 
-DEFUN_DLD (getpwent, , ,
+DEFUN_DLD_BUILTIN (getpwent, , ,
  "getpwent ()\n\
 \n\
 Read an entry from the password-file stream, opening it if necessary.")
@@ -95,7 +95,7 @@
   return retval;
 }
 
-DEFUN_DLD (getpwuid, args, ,
+DEFUN_DLD_BUILTIN (getpwuid, args, ,
   "getpwuid (UID)\n\
 \n\
 Search for a password entry with a matching user ID.")
@@ -130,7 +130,7 @@
   return retval;
 }
 
-DEFUN_DLD (getpwnam, args, ,
+DEFUN_DLD_BUILTIN (getpwnam, args, ,
   "getpwnam (NAME)\n\
 \n\
 Search for password entry with a matching username.")
@@ -156,7 +156,7 @@
   return retval;
 }
 
-DEFUN_DLD (setpwent, , ,
+DEFUN_DLD_BUILTIN (setpwent, , ,
   "setpwent ()\n\
 \n\
 Rewind the password-file stream.")
@@ -172,7 +172,7 @@
   return retval;
 }
 
-DEFUN_DLD (endpwent, , ,
+DEFUN_DLD_BUILTIN (endpwent, , ,
   "endpwent ()\n\
 \n\
 Close the password-file stream.")
--- a/src/getrusage.cc	Sun Nov 03 03:49:55 1996 +0000
+++ b/src/getrusage.cc	Sun Nov 03 04:01:34 1996 +0000
@@ -63,7 +63,7 @@
 
 // System resource functions.
 
-DEFUN_DLD (getrusage, , ,
+DEFUN_DLD_BUILTIN (getrusage, , ,
   "getrusage ()\n\
 \n\
 Return system resource statistics.")
--- a/src/time.cc	Sun Nov 03 03:49:55 1996 +0000
+++ b/src/time.cc	Sun Nov 03 04:01:34 1996 +0000
@@ -89,7 +89,7 @@
   return &tm;
 }
 
-DEFUN_DLD (time, , ,
+DEFUN_DLD_BUILTIN (time, , ,
   "time ()\n\
 \n\
 Return current time.  On Unix systems, this is the number of\n\
@@ -121,7 +121,7 @@
   return (double) now + fraction;
 }
 
-DEFUN_DLD (gmtime, args, ,
+DEFUN_DLD_BUILTIN (gmtime, args, ,
   "gmtime (TIME)\n\
 \n\
 Given a value returned from time(), return a structure like that\n\
@@ -149,7 +149,7 @@
   return retval;
 }
 
-DEFUN_DLD (localtime, args, ,
+DEFUN_DLD_BUILTIN (localtime, args, ,
   "localtime (TIME)\n\
 \n\
 Given a value returned from time(), return a structure with\n\
@@ -188,7 +188,7 @@
   return retval;
 }
 
-DEFUN_DLD (mktime, args, ,
+DEFUN_DLD_BUILTIN (mktime, args, ,
   "mktime (TMSTRUCT)")
 {
   octave_value_list retval;
@@ -210,7 +210,7 @@
   return retval;
 }
 
-DEFUN_DLD (strftime, args, ,
+DEFUN_DLD_BUILTIN (strftime, args, ,
   "strftime (FMT, TMSTRUCT)\n\
 \n\
 Performs `%' substitutions similar to those in printf.  Except where\n\