Modified to include the appropriate header file rather than (badly)
prototyping syscalls itself.
This commit is contained in:
parent
ec254c30c1
commit
dc5d08b2a3
|
@ -64,18 +64,6 @@ typedef struct {
|
||||||
/* Return values of setpath() */
|
/* Return values of setpath() */
|
||||||
enum f_path { F_OK, F_NOMATCH, F_NOPATH } ;
|
enum f_path { F_OK, F_NOMATCH, F_NOPATH } ;
|
||||||
|
|
||||||
/* Library routines */
|
|
||||||
|
|
||||||
extern char *strchr();
|
|
||||||
extern char *strrchr();
|
|
||||||
extern char *strcpy();
|
|
||||||
extern char *strcat();
|
|
||||||
extern int getpid();
|
|
||||||
extern int unlink();
|
|
||||||
extern int close();
|
|
||||||
extern int open();
|
|
||||||
extern int creat();
|
|
||||||
|
|
||||||
/* Own routines */
|
/* Own routines */
|
||||||
enum f_path getpath();
|
enum f_path getpath();
|
||||||
enum f_path scan_end();
|
enum f_path scan_end();
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
#include "ack.h"
|
#include "ack.h"
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
#include "trans.h"
|
#include "trans.h"
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
#include "ack.h"
|
#include "ack.h"
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
#include "trans.h"
|
#include "trans.h"
|
||||||
|
|
|
@ -18,8 +18,6 @@ static char rcsid[] = "$Id$";
|
||||||
* Author: Hans van Staveren
|
* Author: Hans van Staveren
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern char *strncpy();
|
|
||||||
|
|
||||||
unsigned hash(string) char *string; {
|
unsigned hash(string) char *string; {
|
||||||
register char *p;
|
register char *p;
|
||||||
register unsigned i,sum;
|
register unsigned i,sum;
|
||||||
|
|
Loading…
Reference in a new issue