diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-10-30 00:11:07 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-10-30 00:11:07 -0700 |
commit | 7f3146e7895f248dd2f655e9e5895abebb2bf506 (patch) | |
tree | ccde3c9b0e03bdb97c2f00299977dec4d8bef4a4 /stdio-common/tempname.c | |
parent | 471d4931f83644cf86ae2f044cc29c95b9d12109 (diff) | |
download | glibc-7f3146e7895f248dd2f655e9e5895abebb2bf506.tar.gz glibc-7f3146e7895f248dd2f655e9e5895abebb2bf506.tar.xz glibc-7f3146e7895f248dd2f655e9e5895abebb2bf506.zip |
Implement mkstemps and mkstemps64.
Diffstat (limited to 'stdio-common/tempname.c')
-rw-r--r-- | stdio-common/tempname.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stdio-common/tempname.c b/stdio-common/tempname.c index 2c7bcdee0f..02ee34fe8e 100644 --- a/stdio-common/tempname.c +++ b/stdio-common/tempname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 93, 95-98, 99, 2007 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 93, 95-99, 2007, 2009 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -47,8 +47,9 @@ stub_warning (__path_search) */ int -__gen_tempname (tmpl, flags, kind) +__gen_tempname (tmpl, suffixlen, flags, kind) char *tmpl; + int suffixlen; int flags; int kind; { |