repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix FreeBSD build.
[haiku.git]
/
headers
/
compatibility
/
bsd
/
errno.h
blob
3ae5026680d4732c98ea75790c2622dab822d44e
1
/*
2
* Copyright 2008-2010 Haiku Inc. All Rights Reserved.
3
* Distributed under the terms of the MIT License.
4
*/
5
#ifndef _BSD_ERRNO_H_
6
#define _BSD_ERRNO_H_
7
8
9
#include_next <errno.h>
10
11
12
#ifdef _BSD_SOURCE
13
14
15
#define EDOOFUS EINVAL
16
17
18
#endif
19
20
21
#endif
/* _BSD_ERRNO_H_ */