Subversion Repositories HelenOS-historic

Compare Revisions

Regard whitespace Rev 1653 → 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
 
/** @}
*/