projects
/
platform
/
upstream
/
llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e8cbcca8e846b735f2eab8738ddbf2e3c8e11e4a
[platform/upstream/llvm.git]
/
1
#include "libc_header.h"
2
3
namespace std {
4
int myabs(int i) {
5
return i < 0 ? -i : i;
6
}
7
}