From 4cd1cd7201757185e63a5a33181932a6670887ad Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 30 May 2001 09:10:30 +0000 Subject: * ruby.c (proc_options): unexpected SecurityError happens when -T4. * regex.c (re_compile_pattern): * \1 .. \9 should be backreferences always. * regex.c (re_match): backreferences corresponding to unclosed/unmatched parentheses should fail always. * string.c (rb_str_cat): use rb_str_buf_cat() if possible. [new] * string.c (rb_str_append): ditto. * string.c (rb_str_buf_cat): remove unnecessary check (type, taint, modify) to gain performance. * string.c (rb_str_buf_append): ditto. * string.c (rb_str_buf_finish): removed. * string.c (rb_str_buf_new): buffering string function. [new] * string.c (rb_str_buf_append): ditto. * string.c (rb_str_buf_cat): ditto. * string.c (rb_str_buf_finish): ditto. * time.c (make_time_t): local time adjustment revised. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1475 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- win32/dir.h | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 win32/dir.h (limited to 'win32/dir.h') diff --git a/win32/dir.h b/win32/dir.h deleted file mode 100644 index 8aa793de42..0000000000 --- a/win32/dir.h +++ /dev/null @@ -1,20 +0,0 @@ -struct direct -{ - long d_namlen; - ino_t d_ino; - char d_name[256]; -}; -typedef struct { - char *start; - char *curr; - long size; - long nfiles; - struct direct dirstr; -} DIR; - -DIR* opendir(const char*); -struct direct* readdir(DIR *); -long telldir(DIR *); -void seekdir(DIR *, long); -void rewinddir(DIR *); -void closedir(DIR *); -- cgit v1.2.3