headers and redundant declarations.

This commit is contained in:
cgd 1994-12-24 17:30:13 +00:00
parent cfaefa659d
commit 1c759e8912
2 changed files with 5 additions and 5 deletions

View File

@ -12,17 +12,16 @@
Some algorithms adapted from GNU Emacs. */
#ifndef lint
static char rcsid[] = "$Id: backupfile.c,v 1.2 1993/08/02 17:55:13 mycroft Exp $";
static char rcsid[] = "$Id: backupfile.c,v 1.3 1994/12/24 17:30:13 cgd Exp $";
#endif /* not lint */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include "backupfile.h"
#include "config.h"
char *index ();
char *rindex ();
char *malloc ();
#ifdef DIRENT
#include <dirent.h>

View File

@ -1,4 +1,4 @@
/* $Id: common.h,v 1.3 1994/03/28 09:19:18 cgd Exp $ */
/* $Id: common.h,v 1.4 1994/12/24 17:30:18 cgd Exp $ */
#define DEBUGGING
@ -26,6 +26,7 @@
#define malloc system_malloc
#define realloc system_realloc
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>