Lines Matching refs:usage

23 # declare usage to assist AutoLoad
24 sub usage;
64 sub usage {
81 usage "assert(expr)" if @_ != 1;
88 usage "tolower(string)" if @_ != 1;
93 usage "toupper(string)" if @_ != 1;
98 usage "closedir(dirhandle)" if @_ != 1;
103 usage "opendir(directory)" if @_ != 1;
111 usage "readdir(dirhandle)" if @_ != 1;
116 usage "rewinddir(dirhandle)" if @_ != 1;
121 usage "errno()" if @_ != 0;
126 usage "creat(filename, mode)" if @_ != 2;
131 usage "fcntl(filehandle, cmd, arg)" if @_ != 3;
136 usage "getgrgid(gid)" if @_ != 1;
141 usage "getgrnam(name)" if @_ != 1;
146 usage "atan2(x,y)" if @_ != 2;
151 usage "cos(x)" if @_ != 1;
156 usage "exp(x)" if @_ != 1;
161 usage "fabs(x)" if @_ != 1;
166 usage "log(x)" if @_ != 1;
171 usage "pow(x,exponent)" if @_ != 2;
176 usage "sin(x)" if @_ != 1;
181 usage "sqrt(x)" if @_ != 1;
186 usage "getpwnam(name)" if @_ != 1;
191 usage "getpwuid(uid)" if @_ != 1;
212 usage "kill(pid, sig)" if @_ != 2;
217 usage "raise(sig)" if @_ != 1;
314 usage "getc(handle)" if @_ != 1;
319 usage "getchar()" if @_ != 0;
324 usage "gets()" if @_ != 0;
334 usage "printf(pattern, args...)" if @_ < 1;
351 usage "remove(filename)" if @_ != 1;
356 usage "rename(oldfilename, newfilename)" if @_ != 2;
361 usage "rewind(filehandle)" if @_ != 1;
370 usage "sprintf(pattern,args)" if @_ == 0;
399 usage "abs(x)" if @_ != 1;
432 usage "exit(status)" if @_ != 1;
441 usage "getenv(name)" if @_ != 1;
474 usage "system(command)" if @_ != 1;
519 usage "strerror(errno)" if @_ != 1;
553 usage "strstr(big, little)" if @_ != 2;
562 usage "chmod(mode, filename)" if @_ != 2;
567 usage "fstat(fd)" if @_ != 1;
576 usage "mkdir(directoryname, mode)" if @_ != 2;
581 usage "stat(filename)" if @_ != 1;
586 usage "umask(mask)" if @_ != 1;
591 usage "wait()" if @_ != 0;
596 usage "waitpid(pid, options)" if @_ != 2;
601 usage "gmtime(time)" if @_ != 1;
606 usage "localtime(time)" if @_ != 1;
611 usage "time()" if @_ != 0;
616 usage "alarm(seconds)" if @_ != 1;
621 usage "chdir(directory)" if @_ != 1;
626 usage "chown(uid, gid, filename)" if @_ != 3;
655 usage "fork()" if @_ != 0;
660 usage "getegid()" if @_ != 0;
665 usage "geteuid()" if @_ != 0;
670 usage "getgid()" if @_ != 0;
675 usage "getgroups()" if @_ != 0;
681 usage "getlogin()" if @_ != 0;
686 usage "getpgrp()" if @_ != 0;
691 usage "getpid()" if @_ != 0;
696 usage "getppid()" if @_ != 0;
701 usage "getuid()" if @_ != 0;
706 usage "isatty(filehandle)" if @_ != 1;
711 usage "link(oldfilename, newfilename)" if @_ != 2;
716 usage "rmdir(directoryname)" if @_ != 1;
729 usage "sleep(seconds)" if @_ != 1;
734 usage "unlink(filename)" if @_ != 1;
739 usage "utime(filename, atime, mtime)" if @_ != 3;