mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
makepathname() is only ever called with one of two constant string arguments, in one case (DOS) such that it only does a strncpy(...), and the other case (non-DOS) expanding "~" to the current user's home directory. Additional code duplicates realpath() functionality but is never used.
6 lines
99 B
C
6 lines
99 B
C
#ifndef MAINDEFS_H
|
|
#define MAINDEFS_H 1
|
|
void start_lisp(void);
|
|
void print_info_lines(void);
|
|
#endif
|