blob: ecf4f4e81218d3c14cd88fcfe8b3a17dfccd884c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Copyright (C) 2014 Tomasz Kramkowski <tk@the-tk.com>
*
* This program is free software. It is licensed under version 3 of the
* GNU General Public License.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see [http://www.gnu.org/licenses/].
*/
#include <stdio.h>
int main(int argc, char **argv)
{
printf("0123456789012345678901234567890123456789");
printf("\rTesting.\n");
return 0;
}
|