gameserver.c 1.86 KB
/***************************************************************************
 *
 * gameserver.c: This is a gameserver....more to come
 *
 * Copyright (C) 2009 Georg Steffers <georg@steffers.org>
 * This file is part of gameserver
 *
 * gameserver is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Author:   Georg Steffers (gst), georg@steffers.org
 *
 * Version:  0.0
 * Created:  16.08.2009 18:52:57
 * Revision: none
 *
 ***************************************************************************/


/* ####   HEADER FILE INCLUDES   ######################################### */
#include	<stdio.h>
#include	<stdlib.h>

/* ####   MACROS  -  LOCAL TO THIS SOURCE FILE   ######################### */

/* ####   TYPE DEFINITIONS  -  LOCAL TO THIS SOURCE FILE   ############### */

/* ####   DATA TYPES  -  LOCAL TO THIS SOURCE FILE   ##################### */

/* ####   VARIABLES  -  LOCAL TO THIS SOURCE FILE   ###################### */

/* ####   PROTOTYPES  -  LOCAL TO THIS SOURCE FILE   ##################### */

/* ####   FUNCTION DEFINITIONS  -  EXPORTED FUNCTIONS   ################## */

/* ####   FUNCTION DEFINITIONS  -  LOCAL TO THIS SOURCE FILE   ########### */

int
main ( int argc, char *argv[] )
{
	printf ( "Hello World\n" );

	return EXIT_SUCCESS;
}  /* ----------  end of function main  ---------- */