mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 16:34:07 +00:00
Upload
Digital Research
This commit is contained in:
11
CPM OPERATING SYSTEMS/CPM 68K/1.0X SOURCES/v101/vms/creat.c
Normal file
11
CPM OPERATING SYSTEMS/CPM 68K/1.0X SOURCES/v101/vms/creat.c
Normal file
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
* 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*/
|
||||
}
|
Reference in New Issue
Block a user