https://github.com/jrincayc/ucblogo-code
Revision 7286a4af48aabbc0055e395b6ad099b8ec5067f9 authored by Barak A. Pearlmutter on 22 July 2020, 15:40:32 UTC, committed by Barak A. Pearlmutter on 22 July 2020, 19:36:15 UTC
- organize EXTRA_DIST files into sections with commentary
- burst out mac-fontmod.tar
- remove stray .gdb_history
1 parent a7d2a82
Raw File
Tip revision: 7286a4af48aabbc0055e395b6ad099b8ec5067f9 authored by Barak A. Pearlmutter on 22 July 2020, 15:40:32 UTC
Include stray files in distribution tarball
Tip revision: 7286a4a
nographics.c

/* A dummy graphics implementation for Unix */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifdef X_DISPLAY_MISSING

int pw, ph, pc, pm, pv, px, py, bg;

#ifndef HAVE_WX
char *LogoPlatformName="Unix-Nographics";

void nop()
{
}
#endif
#endif
back to top