1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 15:18:14 +00:00
Interlisp.maiko/inc/xrdoptdefs.h
Bruce Mitchener 0129b50127
tidy: xrdopt. (#364)
* 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.
2021-02-22 09:44:43 -08:00

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