Subversion Repositories HelenOS-historic

Compare Revisions

Regard whitespace Rev 1707 → Rev 1719

/uspace/trunk/libc/include/err.h
35,7 → 35,10
#ifndef _libc__ERR_H_
#define _libc__ERR_H_
 
#define errx(status,fmt,...) { printf((fmt),##__VA_ARGS__);_exit(status);}
#define errx(status, fmt, ...) { \
printf((fmt), ##__VA_ARGS__); \
_exit(status); \
}
 
#endif
 
42,5 → 45,3
 
/** @}
*/
/uspace/trunk/libc/include/libc.h
45,16 → 45,12
#define __SYSCALL4(id, p1, p2, p3, p4) __syscall(p1,p2,p3,p4,id)
 
extern void __main(void);
extern void __io_init(void);
extern void __exit(void);
extern sysarg_t __syscall(const sysarg_t p1, const sysarg_t p2,
const sysarg_t p3, const sysarg_t p4,
const syscall_t id);
extern sysarg_t __syscall(const sysarg_t p1, const sysarg_t p2, const sysarg_t p3, const sysarg_t p4, const syscall_t id);
 
 
#endif
 
 
/** @}
*/