artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e49b862a36c6b05822febf7b279a2d1a65d4d3db
[openbsd]
/
1
#include <cstdlib>
2
#include <utility>
3
4
int main(int argc, char **argv) {
5
std::size_t f = argc;
6
f = std::abs(argc);
7
f = std::div(argc * 2, argc).quot;
8
std::swap(f, f);
9
return f; // Set break point at this line.
10
}