From bd3c1a2495cbcb51b606f8e4892fcd127f91e645 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Thu, 17 Nov 2011 14:46:07 +0100 Subject: misc: hide __gen_tempname fix signed vs. unsigned comparison warnings while at it Signed-off-by: Bernhard Reutner-Fischer --- libc/misc/internals/tempname.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/misc/internals/tempname.h') diff --git a/libc/misc/internals/tempname.h b/libc/misc/internals/tempname.h index 017dc5190..e75b632d8 100644 --- a/libc/misc/internals/tempname.h +++ b/libc/misc/internals/tempname.h @@ -10,7 +10,7 @@ extern int ___path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx /*, int try_tmpdir */) attribute_hidden; #define __path_search(tmpl, tmpl_len, dir, pfx, try_tmpdir) ___path_search(tmpl, tmpl_len, dir, pfx) -extern int __gen_tempname (char *__tmpl, int __kind, mode_t mode); +extern int __gen_tempname (char *__tmpl, int __kind, mode_t mode) attribute_hidden; /* The __kind argument to __gen_tempname may be one of: */ #define __GT_FILE 0 /* create a file */ -- cgit v1.2.3