Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6590 → Rev 6591

/drivers/ddk/io/finfo.c
59,12 → 59,13
int get_fileinfo(const char *path,FILEINFO *info)
{
int retval;
int tmp;
 
asm __volatile__
(
"pushl $0 \n\t"
"pushl $0 \n\t"
"movl %0, 1(%%esp) \n\t"
"movl %2, 1(%%esp) \n\t"
"pushl %%ebx \n\t"
"pushl $0 \n\t"
"pushl $0 \n\t"
74,7 → 75,7
"movl $70, %%eax \n\t"
"int $0x40 \n\t"
"addl $28, %%esp \n\t"
:"=a" (retval)
:"=a" (retval),"=b"(tmp)
:"r" (path), "b" (info)
);
return retval;