diff options
Diffstat (limited to 'translate.cxx')
-rw-r--r-- | translate.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/translate.cxx b/translate.cxx index d107423e..30d3bd62 100644 --- a/translate.cxx +++ b/translate.cxx @@ -796,8 +796,6 @@ translator_output::line () void c_unparser::emit_common_header () { - // XXX: tapsets.cxx should be able to add additional definitions - o->newline() << "typedef char string_t[MAXSTRINGLEN];"; o->newline(); o->newline() << "#define STAP_SESSION_STARTING 0"; @@ -909,6 +907,7 @@ c_unparser::emit_common_header () o->newline() << "#include \"arith.c\""; o->newline() << "#endif"; + derived_probe::emit_common_header (o); } |