From 58902b3fadb54775564b6c66684c3dcdb69eda83 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Wed, 26 Feb 2014 08:30:26 -0600 Subject: [PATCH] FOR GREAT JUSTICE --- direct.c | 7 +++++++ direct.h | 1 + mntab | 2 ++ version.h | 2 +- 4 files changed, 11 insertions(+), 1 deletion(-) 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__ -- 2.37.2