Subversion Repositories HelenOS-historic

Rev

Rev 1653 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1653 Rev 1719
Line 33... Line 33...
33
 */
33
 */
34
 
34
 
35
#ifndef _libc__ERR_H_
35
#ifndef _libc__ERR_H_
36
#define _libc__ERR_H_
36
#define _libc__ERR_H_
37
 
37
 
38
#define errx(status,fmt,...) { printf((fmt),##__VA_ARGS__);_exit(status);}
38
#define errx(status, fmt, ...) { \
-
 
39
    printf((fmt), ##__VA_ARGS__); \
-
 
40
    _exit(status); \
-
 
41
}
39
 
42
 
40
#endif
43
#endif
41
 
44
 
42
 
45
 
43
 /** @}
46
/** @}
44
 */
47
 */
45
 
-
 
46
 
-