diff options
| author | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
| commit | dfcf069d565c347abf3cb7cec80e6ed8432037ba (patch) | |
| tree | cd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/ccl.c | |
| parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
| download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip | |
Fix -Wimplicit warnings.
Diffstat (limited to 'src/ccl.c')
| -rw-r--r-- | src/ccl.c | 7 |
1 files changed, 7 insertions, 0 deletions
| @@ -24,6 +24,11 @@ Boston, MA 02111-1307, USA. */ | |||
| 24 | #ifdef emacs | 24 | #ifdef emacs |
| 25 | 25 | ||
| 26 | #include <config.h> | 26 | #include <config.h> |
| 27 | |||
| 28 | #ifdef STDC_HEADERS | ||
| 29 | #include <stdlib.h> | ||
| 30 | #endif | ||
| 31 | |||
| 27 | #include "lisp.h" | 32 | #include "lisp.h" |
| 28 | #include "charset.h" | 33 | #include "charset.h" |
| 29 | #include "ccl.h" | 34 | #include "ccl.h" |
| @@ -659,6 +664,7 @@ struct ccl_prog_stack | |||
| 659 | int ic; /* Instruction Counter. */ | 664 | int ic; /* Instruction Counter. */ |
| 660 | }; | 665 | }; |
| 661 | 666 | ||
| 667 | int | ||
| 662 | ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed) | 668 | ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed) |
| 663 | struct ccl_program *ccl; | 669 | struct ccl_program *ccl; |
| 664 | unsigned char *source, *destination; | 670 | unsigned char *source, *destination; |
| @@ -1699,6 +1705,7 @@ Return index number of the registered translation table.") | |||
| 1699 | } | 1705 | } |
| 1700 | 1706 | ||
| 1701 | 1707 | ||
| 1708 | void | ||
| 1702 | syms_of_ccl () | 1709 | syms_of_ccl () |
| 1703 | { | 1710 | { |
| 1704 | staticpro (&Vccl_program_table); | 1711 | staticpro (&Vccl_program_table); |