diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1995-11-19 16:53:12 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1995-11-19 16:53:12 +0000 |
commit | 6ded20c275eeb702b7d1f24bfcab2b238db6e001 (patch) | |
tree | 654ba179912e481b2c9bfe1a95412fc18cdbca7b /asmcomp/emitaux.ml | |
parent | 3a7f4f09aa4b0fcec61ae06d140b6ca738558943 (diff) | |
download | ocaml-6ded20c275eeb702b7d1f24bfcab2b238db6e001.tar.gz |
Corrections diverses
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@455 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'asmcomp/emitaux.ml')
-rw-r--r-- | asmcomp/emitaux.ml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/asmcomp/emitaux.ml b/asmcomp/emitaux.ml index e53cc841aa..64a75d261a 100644 --- a/asmcomp/emitaux.ml +++ b/asmcomp/emitaux.ml @@ -19,6 +19,8 @@ let emit_string s = output_string !output_channel s let emit_int n = output_string !output_channel (string_of_int n) +let emit_char c = output_char !output_channel c + let emit_printf fmt = Printf.fprintf !output_channel fmt |