]> Shamusworld >> Repos - rmac/commitdiff
FOR GREAT JUSTICE
authorShamus Hammons <jlhamm@acm.org>
Wed, 26 Feb 2014 14:30:26 +0000 (08:30 -0600)
committerShamus Hammons <jlhamm@acm.org>
Wed, 26 Feb 2014 14:30:26 +0000 (08:30 -0600)
direct.c
direct.h
mntab
version.h

index 3542669d201c056c1428074e3dd140b6421106ea..67a6ffdfcf014fa7111a1afd4e7330ce1046f15b 100644 (file)
--- 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?");
+}
+
index be2643d9babf2d0f4306a1c682840cf9f022fb14..a047c3ca29a4649e0f389de1b3fec92caca2e922 100644 (file)
--- 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 f07715ce651ed311cdf5eff65e76e916e235cc49..6207ca1108eded7f720733500c6c616d84fd78dd 100644 (file)
--- 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
index ab70e8b7fdc48908b82af932543a8dad5db75269..089d546d7d1b28616dab5aa26b15b295a30e7683 100644 (file)
--- 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__