artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a0cb2f15a1931fa9c2a369b744900668fbca5eb9
[openbsd]
/
1
#include "libc_header.h"
2
3
namespace std {
4
// Makes sure we get a support file for this header.
5
struct vector { int i; };
6
7
__attribute__((__nodebug__))
8
inline int myabs(int i = -123) {
9
double nil;
10
return i < 0 ? -i : i;
11
}
12
}