mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 11:50:11 -05:00
COMP: Remove warnings
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
|
||||
|
||||
/* read a header block */
|
||||
int
|
||||
static int
|
||||
th_read_internal(TAR *t)
|
||||
{
|
||||
ssize_t i;
|
||||
|
||||
@@ -39,10 +39,7 @@ static char *rcsid = "$OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp
|
||||
* will be copied. Always NUL terminates (unless siz == 0).
|
||||
* Returns strlen(src); if retval >= siz, truncation occurred.
|
||||
*/
|
||||
size_t strlcpy(dst, src, siz)
|
||||
char *dst;
|
||||
const char *src;
|
||||
size_t siz;
|
||||
size_t strlcpy(char *dst, const char *src, size_t siz)
|
||||
{
|
||||
register char *d = dst;
|
||||
register const char *s = src;
|
||||
|
||||
@@ -126,19 +126,19 @@ int libtar_gzopen(void* call_data, const char *pathname, int oflags, mode_t mode
|
||||
return fd;
|
||||
}
|
||||
|
||||
int libtar_gzclose(void* call_data)
|
||||
static int libtar_gzclose(void* call_data)
|
||||
{
|
||||
struct gzStruct* gzf = (struct gzStruct*)call_data;
|
||||
return cm_zlib_gzclose(gzf->GZFile);
|
||||
}
|
||||
|
||||
ssize_t libtar_gzread(void* call_data, void* buf, size_t count)
|
||||
static ssize_t libtar_gzread(void* call_data, void* buf, size_t count)
|
||||
{
|
||||
struct gzStruct* gzf = (struct gzStruct*)call_data;
|
||||
return cm_zlib_gzread(gzf->GZFile, buf, count);
|
||||
}
|
||||
|
||||
ssize_t libtar_gzwrite(void* call_data, const void* buf, size_t count)
|
||||
static ssize_t libtar_gzwrite(void* call_data, const void* buf, size_t count)
|
||||
{
|
||||
struct gzStruct* gzf = (struct gzStruct*)call_data;
|
||||
return cm_zlib_gzwrite(gzf->GZFile, (void*)buf, count);
|
||||
@@ -212,7 +212,7 @@ create(char *tarfile, char *rootdir, libtar_list_t *l)
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
static int
|
||||
list(char *tarfile)
|
||||
{
|
||||
TAR *t;
|
||||
@@ -272,7 +272,7 @@ list(char *tarfile)
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
static int
|
||||
extract(char *tarfile, char *rootdir)
|
||||
{
|
||||
TAR *t;
|
||||
@@ -316,7 +316,7 @@ extract(char *tarfile, char *rootdir)
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
static void
|
||||
usage()
|
||||
{
|
||||
printf("Usage: %s [-C rootdir] [-g] [-z] -x|-t filename.tar\n",
|
||||
|
||||
@@ -434,7 +434,8 @@ int
|
||||
/*
|
||||
** @LISTHASH_PREFIX@_list_merge() - merge two lists into a new list
|
||||
*/
|
||||
@LISTHASH_PREFIX@_list_t *
|
||||
/*
|
||||
static @LISTHASH_PREFIX@_list_t *
|
||||
@LISTHASH_PREFIX@_list_merge(@LISTHASH_PREFIX@_cmpfunc_t cmpfunc, int flags,
|
||||
@LISTHASH_PREFIX@_list_t *list1,
|
||||
@LISTHASH_PREFIX@_list_t *list2)
|
||||
@@ -453,5 +454,6 @@ int
|
||||
|
||||
return newlist;
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user