aboutsummaryrefslogtreecommitdiffstats
path: root/snippets/c-mode/main~
blob: 3821a777ac3cfb0d1ac02b96d9b7466fd792345b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# -*- mode: snippet -*-
# name: main
# key: main
# --

\#include <stdio.h>

int main(int arc, char** argv)
{
	return 0;
}