From e781fb26fdd422ea72c3a0eeba817e4faa5f663b Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Wed, 1 Apr 2015 20:22:48 -0400 Subject: as of 2013-10-17 --- sys_reqc.c | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 sys_reqc.c (limited to 'sys_reqc.c') diff --git a/sys_reqc.c b/sys_reqc.c deleted file mode 100644 index 7856032..0000000 --- a/sys_reqc.c +++ /dev/null @@ -1,30 +0,0 @@ -/* - * file: sys_reqc.c - * - * This is the MPX system request function which - * uses the C gets function. - */ - - - -/* sys_req - implements the MPX system request function. - * - * Parameters: number - request number: a device or exit code. - * type - request type: read, write, wait, signal. - * s - address of read/write buffer. - * length - address of buffer length variable. - * - * Return value: None - * - * In this module, the only system request allowed is to - * read from the console (keyboard). This is done using - * the standard C function gets(). - */ - - -void sys_req(int number, int type, char *s, int *length) -{ - gets(s); /* Read a string from the keyboard. */ - *length = strlen(s); /* Get its length. */ -} - -- cgit v1.2.3