aboutsummaryrefslogtreecommitdiffstats
path: root/src/ccl.c
diff options
context:
space:
mode:
authorAndreas Schwab1998-04-14 12:25:56 +0000
committerAndreas Schwab1998-04-14 12:25:56 +0000
commitdfcf069d565c347abf3cb7cec80e6ed8432037ba (patch)
treecd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/ccl.c
parent0f94f94657ad7a6a68e64c612285a5e06152def2 (diff)
downloademacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz
emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip
Fix -Wimplicit warnings.
Diffstat (limited to 'src/ccl.c')
-rw-r--r--src/ccl.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ccl.c b/src/ccl.c
index 8e8575a8f11..d68367f5f90 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -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
667int
662ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed) 668ccl_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
1708void
1702syms_of_ccl () 1709syms_of_ccl ()
1703{ 1710{
1704 staticpro (&Vccl_program_table); 1711 staticpro (&Vccl_program_table);