kolibrios/drivers/ddk/io/ssize.c
turbocat 80647f2201 libddk: fixed io functions
git-svn-id: svn://kolibrios.org@9186 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-09-10 18:50:14 +00:00

14 lines
252 B
C

#include <syscall.h>
int set_file_size(const char *path, unsigned size)
{
ksys70_t k;
int err;
k.p00 = 4;
k.p04dw = size;
k.p08dw = 0;
k.p20 = 0;
k.p21 = path;
return FS_Service(&k, &err);
}