summaryrefslogtreecommitdiffstats
path: root/Modules/cstubs
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/cstubs')
-rw-r--r--Modules/cstubs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Modules/cstubs b/Modules/cstubs
index 76feb6a..6ff8f54 100644
--- a/Modules/cstubs
+++ b/Modules/cstubs
@@ -801,6 +801,18 @@ gl_unpackrect(self, args)
return unpacked;
}
+% gversion
+static object *
+gl_gversion(self, args)
+ object *self;
+ object *args;
+{
+ char buf[20];
+ gversion(buf);
+ return newstringobject(buf);
+}
+
+
/* End of manually written stubs */
%%