summarylogtreecommitdiffstats
path: root/skeleton-c
blob: f5d9b073a486f5d858a981002e4cb0757228f1f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * (C) 2015 by Christian Hesse <mail@eworm.de>
 *
 * This software may be used and distributed according to the terms
 * of the GNU General Public License, incorporated herein by reference.
 *
 * This is an example code skeleton provided by vim-skeleton.
 */

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char **argv) {
	/* your code goes here */

	return EXIT_SUCCESS;
}

// vim: set syntax=c: