Subversion Repositories HelenOS-historic

Compare Revisions

Regard whitespace Rev 1719 → Rev 1718

/uspace/trunk/libc/include/err.h
35,10 → 35,7
#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
 
45,3 → 42,5
 
/** @}
*/