mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
638fd8774b
All shared libraries must have `include/ruby/internal/abi.h` to include the ABI version. Including `ruby.h` will guarantee that.
20 lines
413 B
C
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"
|
|
}
|