# HG changeset patch # User jwe # Date 846993694 0 # Node ID 7d5338788d69d76d7196d99d0b43fe34bfa6ce76 # Parent 4690fe4c0333f7eb654b566376b7e3abb1b49ec2 [project @ 1996-11-03 04:01:34 by jwe] diff --git a/src/getpwent.cc b/src/getpwent.cc --- a/src/getpwent.cc +++ b/src/getpwent.cc @@ -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.") diff --git a/src/getrusage.cc b/src/getrusage.cc --- a/src/getrusage.cc +++ b/src/getrusage.cc @@ -63,7 +63,7 @@ // System resource functions. -DEFUN_DLD (getrusage, , , +DEFUN_DLD_BUILTIN (getrusage, , , "getrusage ()\n\ \n\ Return system resource statistics.") diff --git a/src/time.cc b/src/time.cc --- a/src/time.cc +++ b/src/time.cc @@ -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\