blob: e24a33b386fefbbcb0bf24f742cccf32b4adc006 [file] [log] [blame]
Wolfgang Denk65cd3fa2010-06-12 00:19:46 +02001#ifndef _ERRNO_H
2
3#include <asm-generic/errno.h>
4
5extern int errno;
6
7#define __set_errno(val) do { errno = val; } while (0)
8
9#endif /* _ERRNO_H */