2021-07-13 00:49:51 +02:00
|
|
|
#include <syscall.h>
|
2010-02-12 21:11:35 +01:00
|
|
|
|
|
|
|
int create_file(const char *path)
|
|
|
|
{
|
2021-07-13 00:49:51 +02:00
|
|
|
int err=0;
|
|
|
|
ksys70_t k;
|
|
|
|
k.p00 = 2;
|
|
|
|
k.p12 = 0;
|
|
|
|
k.p20 = 0;
|
|
|
|
k.p21 = path;
|
|
|
|
return FS_Service(&k, &err);
|
2010-02-12 21:11:35 +01:00
|
|
|
};
|