Skip to content

Commit a4673b9

Browse files
committedMay 13, 2015
Added stdarg.h include to ruby.h.
1 parent 81e5794 commit a4673b9

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
 

Diff for: ‎spec/ruby/optional/capi/ext/string_spec.c

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#include <string.h>
2-
#include <stdarg.h>
32

43
#include "ruby.h"
54
#include "rubyspec.h"

Diff for: ‎vm/include/capi/ruby/ruby.h

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ extern "C" {
3030

3131
// A number of extensions expect these to be already included
3232
#include <sys/time.h>
33+
#include <stdarg.h>
3334
#include <stdio.h>
3435
#include <string.h>
3536
#include <sys/types.h>

0 commit comments

Comments
 (0)
Please sign in to comment.