initial commit

This commit is contained in:
longpanda
2020-04-05 00:07:50 +08:00
parent 2090c6fa97
commit 05a1b863a6
487 changed files with 114253 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
#define _FILE_OFFSET_BITS 64
//u64 typedef unsigned long long u64;

View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int main(void)
{
u64 n;
printf("%d\n", (int) n+2);
return 0;
}