mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
* Remove unused `print_lispusage()`. * Make some globals into function locals. * Make the options table into a `static`. It can't be `const` because `XrmParseCommand` wants a mutable pointer. * Remove unused `homeDB`. * Stop using `caddr_t`, use `XPointer`. `caddr_t` is not POSIX and never made it past old obsolete BSD code.
6 lines
132 B
C
6 lines
132 B
C
#ifndef XRDOPTDEFS_H
|
|
#define XRDOPTDEFS_H 1
|
|
void print_Xusage(const char *prog);
|
|
void read_Xoption(int *argc, char *argv[]);
|
|
#endif
|