mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-17 00:22:59 +00:00
Resolve shadow declarations
Remove deprecated register attribute
Simplify for-loop syntax, use C99 style loop var declaration
Make (not used elsewhere) string functions static
11 lines
321 B
C
11 lines
321 B
C
#ifndef UUTILSDEFS_H
|
|
#define UUTILSDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
LispPTR check_unix_password(LispPTR *args);
|
|
LispPTR unix_username(LispPTR *args);
|
|
LispPTR unix_getparm(LispPTR *args);
|
|
LispPTR unix_getenv(LispPTR *args);
|
|
LispPTR unix_fullname(LispPTR *args);
|
|
LispPTR suspend_lisp(LispPTR *args);
|
|
#endif
|