summaryrefslogtreecommitdiff
path: root/ruby_1_8_5/vms/vmsruby_private.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-15 20:57:30 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-15 20:57:30 +0000
commit54ec1c4fe81672ca66f327ef6ae170f458cd79e5 (patch)
tree45a752c60a9a08d681a792b70f43c89903b638a2 /ruby_1_8_5/vms/vmsruby_private.c
parentd464704f111d211c1f1ff9ef23ef1d755054be00 (diff)
sorry. I made wrong tags.v1_8_5_54
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_8_5_54@13009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby_1_8_5/vms/vmsruby_private.c')
-rw-r--r--ruby_1_8_5/vms/vmsruby_private.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/ruby_1_8_5/vms/vmsruby_private.c b/ruby_1_8_5/vms/vmsruby_private.c
deleted file mode 100644
index c1cbfcebec..0000000000
--- a/ruby_1_8_5/vms/vmsruby_private.c
+++ /dev/null
@@ -1,52 +0,0 @@
-#include "vmsruby_private.h"
-#include <stdio.h>
-#include <stdlib.h>
-
-void _vmsruby_init(void)
-{
- _vmsruby_set_switch("DECC$WLS", "TRUE");
-}
-
-
-#include <starlet.h>
-#include <string.h>
-#include <descrip.h>
-#include <lnmdef.h>
-
-struct item_list_3 {
- short buflen;
- short itmcod;
- void *bufadr;
- void *retlen;
-};
-
-long _vmsruby_set_switch(char *name, char *value)
-{
- long status;
- struct item_list_3 itemlist[20];
- int i;
-
- i = 0;
- itemlist[i].itmcod = LNM$_STRING;
- itemlist[i].buflen = strlen(value);
- itemlist[i].bufadr = value;
- itemlist[i].retlen = NULL;
- i++;
- itemlist[i].itmcod = 0;
- itemlist[i].buflen = 0;
-
- $DESCRIPTOR(TABLE_d, "LNM$PROCESS");
- $DESCRIPTOR(lognam_d, "");
-
- lognam_d.dsc$a_pointer = name;
- lognam_d.dsc$w_length = strlen(name);
-
- status = sys$crelnm (
- 0,
- &TABLE_d,
- &lognam_d,
- 0, /* usermode */
- itemlist);
-
- return status;
-}