[Python-checkins] CVS: python/dist/src/Modules readline.c,2.29,2.30

Guido van Rossum python-dev@python.org
Thu, 31 Aug 2000 19:43:40 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv31296

Modified Files:
	readline.c 
Log Message:
Add three prototypes for functions in history.h to shut up gcc -Wall.


Index: readline.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/readline.c,v
retrieving revision 2.29
retrieving revision 2.30
diff -C2 -r2.29 -r2.30
*** readline.c	2000/08/31 05:18:53	2.29
--- readline.c	2000/09/01 02:43:38	2.30
***************
*** 35,38 ****
--- 35,41 ----
  extern int rl_initialize(void);
  extern int add_history(char *);
+ extern int read_history(char *);
+ extern int write_history(char *);
+ extern int history_truncate_file(char *, int);
  extern Function *rl_event_hook;
  #endif