File: u64.c

package info (click to toggle)
vblade 23-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 264 kB
  • ctags: 274
  • sloc: ansic: 1,289; makefile: 46; sh: 36
file content (8 lines) | stat: -rw-r--r-- 86 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main(void)
{
	u64 n;
	printf("%d\n", (int) n+2);
	return 0;
}