Add James Harvey's excellent new puzzle, `Galaxies'.

[originally from svn r7304]
This commit is contained in:
Simon Tatham
2007-02-22 09:31:43 +00:00
parent aa6fb75072
commit e137ad8b1a
7 changed files with 3566 additions and 4 deletions

View File

@ -84,7 +84,7 @@ void debug_printf(char *fmt, ...)
va_list ap;
va_start(ap, fmt);
vsprintf(buf, fmt, ap);
_vsnprintf(buf, 4095, fmt, ap);
dputs(buf);
va_end(ap);
}