mirror of
https://github.com/mirror/make.git
synced 2025-01-24 03:10:14 +08:00
* src/makeint.h: Add a declaration for memrchr()
This commit is contained in:
parent
ee204c78f2
commit
766baeef0a
@ -528,8 +528,12 @@ void print_spaces (unsigned int);
|
|||||||
char *find_percent (char *);
|
char *find_percent (char *);
|
||||||
const char *find_percent_cached (const char **);
|
const char *find_percent_cached (const char **);
|
||||||
FILE *get_tmpfile (char **, const char *);
|
FILE *get_tmpfile (char **, const char *);
|
||||||
ssize_t writebuf (int, const void*, size_t);
|
ssize_t writebuf (int, const void *, size_t);
|
||||||
ssize_t readbuf (int, void*, size_t);
|
ssize_t readbuf (int, void *, size_t);
|
||||||
|
|
||||||
|
#ifndef HAVE_MEMRCHR
|
||||||
|
void *memrchr(const void *, int, size_t);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef NO_ARCHIVES
|
#ifndef NO_ARCHIVES
|
||||||
int ar_name (const char *);
|
int ar_name (const char *);
|
||||||
|
Loading…
Reference in New Issue
Block a user