https://github.com/jrincayc/ucblogo-code
Revision 7f090acbbd2fadd723e992baf3ea4b0eb962b366 authored by Joshua Cogliati on 10 December 2020, 02:53:01 UTC, committed by GitHub on 10 December 2020, 02:53:01 UTC
ISSUE-69: Add a LINEP predicate.
2 parent s 88e3cb2 + a18fe81
Raw File
Tip revision: 7f090acbbd2fadd723e992baf3ea4b0eb962b366 authored by Joshua Cogliati on 10 December 2020, 02:53:01 UTC
Merge pull request #70 from dmalec/ISSUE-69
Tip revision: 7f090ac
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