mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-21 23:29:16 +00:00
784e3de7cd
passwd, ps, purge, shutdown, stty, upper, and vi. These sources are for the versions of the utils shipped with GNO v2.0.4.
17 lines
294 B
C
17 lines
294 B
C
/*
|
|
* Apple //gs GSOS Machine-dependent routines.
|
|
*/
|
|
|
|
void flushbuf(void);
|
|
|
|
int inchar(void);
|
|
int outchar(char);
|
|
void outstr(char *);
|
|
void toutstr(char *);
|
|
void beep(void);
|
|
void windinit(void);
|
|
void windexit(int);
|
|
void windgoto(int,int);
|
|
void delay(void);
|
|
unsigned int sleep(unsigned int);
|