File: u64.c

package info (click to toggle)
vblade 24-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 364 kB
  • sloc: ansic: 1,299; sh: 633; makefile: 58
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;
}