* updated wayland (1.23.0 -> 1.23.1)
[t2sde.git] / misc / archive / hello.c
blobf339559f31749b4bf21dec09e5d665bb8ef989b3
1 /*
2 * --- T2-COPYRIGHT-NOTE-BEGIN ---
3 * T2 SDE: misc/archive/hello.c
4 * Copyright (C) 2004 - 2024 The T2 SDE Project
5 * Copyright (C) 1998 - 2003 ROCK Linux Project
6 *
7 * This Copyright note is generated by scripts/Create-CopyPatch,
8 * more information can be found in the files COPYING and README.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2.
12 * --- T2-COPYRIGHT-NOTE-END ---
15 // Hello World in C.
17 #include <stdio.h>
19 int main() {
20 printf("Hello from C.\n");
21 return 0;