Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9056 → Rev 9057

/drivers/ddk/io/create.c
1,23 → 1,12
#include <syscall.h>
 
int create_file(const char *path)
{
int retval;
int count;
__asm__ __volatile__ (
"pushl $0 \n\t"
"pushl $0 \n\t"
"movl %2, 1(%%esp) \n\t"
"pushl $0 \n\t"
"pushl $0 \n\t"
"pushl $0 \n\t"
"pushl $0 \n\t"
"pushl $2 \n\t"
"movl %%esp, %%ebx \n\t"
"movl $70, %%eax \n\t"
"int $0x40 \n\t"
"addl $28, %%esp \n\t"
:"=a" (retval), "=b"(count)
:"r" (path)
);
return retval;
int err=0;
ksys70_t k;
k.p00 = 2;
k.p12 = 0;
k.p20 = 0;
k.p21 = path;
return FS_Service(&k, &err);
};