Archived
1
0
Fork 0
This repository has been archived on 2022-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
mipt_clang/data/patch.c

17 lines
261 B
C
Raw Normal View History

2022-03-07 15:57:12 +03:00
#ifdef _DEBUG
#include <stdio.h>
unsigned int patch(unsigned int x);
int main() {
unsigned int x = 1000 * 100;
unsigned int y = 2310 * 100 + 72;
unsigned int z = patch(y);
return 0;
}
#endif
unsigned int patch(unsigned int x) {
return x & ~(1 << 17);
}