1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/enc/trans/transdb.c
Peter Zhu 638fd8774b [Feature #18249] Include ruby.h in extensions to have ABI version
All shared libraries must have `include/ruby/internal/abi.h` to include
the ABI version. Including `ruby.h` will guarantee that.
2022-02-22 09:55:21 -05:00

20 lines
413 B
C

/**********************************************************************
enc/trans/transdb.c -
$Author$
created at: Mon Apr 7 15:51:31 2008
Copyright (C) 2008 Yukihiro Matsumoto
**********************************************************************/
#include "ruby.h"
void rb_declare_transcoder(const char *enc1, const char *enc2, const char *lib);
void
Init_transdb(void)
{
#include "transdb.h"
}