From: Shamus Hammons Date: Wed, 26 Feb 2014 14:30:26 +0000 (-0600) Subject: FOR GREAT JUSTICE X-Git-Tag: 1.3.0~4 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=commitdiff_plain;h=58902b3fadb54775564b6c66684c3dcdb69eda83;hp=9df4696c6d38b7908dd83f95509fc14f2f7c799c FOR GREAT JUSTICE --- diff --git a/direct.c b/direct.c index 3542669..67a6ffd 100644 --- a/direct.c +++ b/direct.c @@ -85,6 +85,7 @@ int (*dirtab[])() = { d_cstruct, // 53 .cstruct d_jpad, // 54 .jpad (deprecated) d_nojpad, // 55 .nojpad (deprecated) + d_gpumain, // 56 .gpumain (deprecated) }; @@ -1576,3 +1577,9 @@ int d_nojpad(void) return OK; } + +int d_gpumain(void) +{ + return error("What the hell? Do you think we adhere to the Goof standard?"); +} + diff --git a/direct.h b/direct.h index be2643d..a047c3c 100644 --- a/direct.h +++ b/direct.h @@ -71,5 +71,6 @@ int abs_expr(VALUE *); int d_cstruct(void); int d_jpad(void); int d_nojpad(void); +int d_gpumain(void); #endif // __DIRECT_H__ diff --git a/mntab b/mntab index f07715c..6207ca1 100644 --- a/mntab +++ b/mntab @@ -93,6 +93,8 @@ cstruct 53 jpad 54 .nojpad 55 nojpad 55 +.gpumain 56 +gpumain 56 .if 500 if 500 .else 501 diff --git a/version.h b/version.h index ab70e8b..089d546 100644 --- a/version.h +++ b/version.h @@ -13,6 +13,6 @@ #define MAJOR 1 // Major version number #define MINOR 2 // Minor version number -#define PATCH 10 // Patch release number +#define PATCH 11 // Patch release number #endif // __VERSION_H__