mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-26 14:00:56 +00:00
Thu May 9 13:54:49 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* read.c (parse_file_seq): Use `int' for char arg to avoid widening conflict issues. * dep.h: Fix prototype.
This commit is contained in:
parent
abe5f64440
commit
58af8d9dd1
2 changed files with 3 additions and 3 deletions
4
dep.h
4
dep.h
|
@ -1,5 +1,5 @@
|
||||||
/* Definitions of dependency data structures for GNU Make.
|
/* Definitions of dependency data structures for GNU Make.
|
||||||
Copyright (C) 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
|
Copyright (C) 1988, 1989, 1991, 1992, 1993, 1996 Free Software Foundation, Inc.
|
||||||
This file is part of GNU Make.
|
This file is part of GNU Make.
|
||||||
|
|
||||||
GNU Make is free software; you can redistribute it and/or modify
|
GNU Make is free software; you can redistribute it and/or modify
|
||||||
|
@ -44,7 +44,7 @@ extern struct nameseq *multi_glob PARAMS ((struct nameseq *chain, unsigned int s
|
||||||
#ifdef VMS
|
#ifdef VMS
|
||||||
extern struct nameseq *parse_file_seq ();
|
extern struct nameseq *parse_file_seq ();
|
||||||
#else
|
#else
|
||||||
extern struct nameseq *parse_file_seq PARAMS ((char **stringp, char stopchar, unsigned int size, int strip));
|
extern struct nameseq *parse_file_seq PARAMS ((char **stringp, int stopchar, unsigned int size, int strip));
|
||||||
#endif
|
#endif
|
||||||
extern char *tilde_expand PARAMS ((char *name));
|
extern char *tilde_expand PARAMS ((char *name));
|
||||||
|
|
||||||
|
|
2
read.c
2
read.c
|
@ -1544,7 +1544,7 @@ find_percent (pattern)
|
||||||
struct nameseq *
|
struct nameseq *
|
||||||
parse_file_seq (stringp, stopchar, size, strip)
|
parse_file_seq (stringp, stopchar, size, strip)
|
||||||
char **stringp;
|
char **stringp;
|
||||||
char stopchar;
|
int stopchar;
|
||||||
unsigned int size;
|
unsigned int size;
|
||||||
int strip;
|
int strip;
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue