diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-11-09 14:57:12 -0800 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-11-09 14:57:36 -0800 |
commit | 4ea99259d3a07356dfb696fd88efd4d087479dec (patch) | |
tree | b0fa4c432deb201ba4aa3b1460aea638971efda1 /libc/misc/internals/tempname.c | |
parent | 8ce4b857ab234368df4379354029c1b02bd0afac (diff) | |
download | uClibc-alpine-4ea99259d3a07356dfb696fd88efd4d087479dec.tar.bz2 uClibc-alpine-4ea99259d3a07356dfb696fd88efd4d087479dec.tar.xz |
make the sem_open changes actually compile
__gen_tempname now needs to not be hidden so libpthread can get at it
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/misc/internals/tempname.c')
-rw-r--r-- | libc/misc/internals/tempname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/internals/tempname.c b/libc/misc/internals/tempname.c index 4abd3c6aa..4145c9478 100644 --- a/libc/misc/internals/tempname.c +++ b/libc/misc/internals/tempname.c @@ -175,7 +175,7 @@ static void brain_damaged_fillrand(unsigned char *buf, unsigned int len) __GT_DIR: create a directory with given mode. */ -int attribute_hidden __gen_tempname (char *tmpl, int kind, mode_t mode) +int __gen_tempname (char *tmpl, int kind, mode_t mode) { char *XXXXXX; unsigned int i; |