mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
22 lines
363 B
C
22 lines
363 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <Kernel/errno.h>
|
|
|
|
#define __RETURN_WITH_ERRNO(rc, good_ret, bad_ret) \
|
|
do { \
|
|
if (rc < 0) { \
|
|
errno = -rc; \
|
|
return (bad_ret); \
|
|
} else { \
|
|
errno = 0; \
|
|
return (good_ret); \
|
|
} \
|
|
} while(0)
|
|
|
|
__BEGIN_DECLS
|
|
|
|
extern int errno;
|
|
|
|
__END_DECLS
|
|
|