blob: 6acd02b30e038d66eaf7ee8dc6751740c4ee5ff3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef LYSYSTEM_H
#define LYSYSTEM_H
#ifdef VMS
extern int DCLsystem PARAMS((char *command));
#define system(a) DCLsystem(a) /* use LYCurses.c routines for spawns */
#endif /* VMS */
#endif /* LYSYSTEM_H */
|