mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 00:14:25 +00:00
12 lines
246 B
C
12 lines
246 B
C
/*
|
|
* Creat.c -- Whitesmith's simulation of V6 "creat" function
|
|
*/
|
|
#include <std.h>
|
|
creat(name,mode)
|
|
|
|
char *name; /* -> Filename to create */
|
|
int mode; /* Read / Write, etc. */
|
|
{
|
|
return(create(name,1,1)); /* Write + 1 byte records*/
|
|
}
|