X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=src%2Fglkstart.c;fp=src%2Fglkstart.c;h=0000000000000000000000000000000000000000;hb=78652af29a2f39e626febd5f4213da57d3a13901;hp=e9baf360339c578834e651b643d0454522cbadc6;hpb=91214934fbcdfd363202a65c142194506604ff7b;p=projects%2Fchimara%2Fchimara.git diff --git a/src/glkstart.c b/src/glkstart.c deleted file mode 100644 index e9baf36..0000000 --- a/src/glkstart.c +++ /dev/null @@ -1,24 +0,0 @@ -/* glkstart.c: Unix-specific startup code -- sample file. - Designed by Andrew Plotkin - http://www.eblong.com/zarf/glk/index.html - - This is Unix startup code for the simplest possible kind of Glk - program -- no command-line arguments; no startup files; no nothing. - - Remember, this is a sample file. You should copy it into the Glk - program you are compiling, and modify it to your needs. This should - *not* be compiled into the Glk library itself. -*/ - -#include "glk.h" -#include "glkstart.h" - -glkunix_argumentlist_t glkunix_arguments[] = { - { NULL, glkunix_arg_End, NULL } -}; - -int glkunix_startup_code(glkunix_startup_t *data) -{ - return TRUE; -} -