Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 79 → Rev 80

/shark/trunk/include/fs/syscall.h
22,7 → 22,10
#define __FS_SYSCALL_H
 
#include <fs/types.h>
#include "ll/sys/cdefs.h"
 
__BEGIN_DECLS
 
#define SYS_CALL(fun) fun()
#define SYS_CALL1(fun,a1) fun(a1)
#define SYS_CALL2(fun,a1,a2) fun((a1),(a2))
42,4 → 45,5
int k_ftruncate(int fildes, __off_t len);
int k_unlink(char *path);
 
__END_DECLS
#endif