https://github.com/jrincayc/ucblogo-code
Revision c5a0b413b0d858ccdf9a9ba59f7a8f4e467399a0 authored by Barak A. Pearlmutter on 22 July 2020, 20:01:25 UTC, committed by Barak A. Pearlmutter on 22 July 2020, 20:01:25 UTC
1 parent 019a4ea
Raw File
Tip revision: c5a0b413b0d858ccdf9a9ba59f7a8f4e467399a0 authored by Barak A. Pearlmutter on 22 July 2020, 20:01:25 UTC
convert pointer to long when viewing as integer, per C standard
Tip revision: c5a0b41
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