]> sourceware.org Git - newlib-cygwin.git/commitdiff
Replace __attribute((__warning__())) by __attribute__((deprecated()))
authorOlivier Martin <olivier@labapart.com>
Fri, 6 Nov 2015 10:05:09 +0000 (10:05 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Fri, 6 Nov 2015 10:29:58 +0000 (11:29 +0100)
Clang raises the warning message:
warning: unknown attribute '__warning__' ignored [-Wunknown-attributes]

* libc/include/stdlib.h (mktemp): Change attribute to deprecated.
(_mktemp_r): Ditto.

Signed-off-by: Olivier Martin <olivier@labapart.com>
newlib/ChangeLog
newlib/libc/include/stdlib.h

index 3dec6e2c9b616856214af46ce792973066828a76..f8e51a78a4c01186b552262afc10c2fabc24852c 100644 (file)
@@ -1,3 +1,8 @@
+2015-11-06  Olivier Martin  <olivier@labapart.com>
+
+       * libc/include/stdlib.h (mktemp): Change attribute to deprecated.
+       (_mktemp_r): Ditto.
+
 2015-11-03  Marcus Shawcroft  <marcus.shawcroft@arm.com>
 
        * libc/machine/arm/configure.in: Check for __ARM_ARCH_8A__.
index 51a6f0afb365d587a5d0d5a9b8f5cc430d79a530..c73ed1115c8c04dce89e197b5078f9b20e600a9f 100644 (file)
@@ -112,14 +112,14 @@ int       _EXFUN(mkostemp,(char *, int));
 int    _EXFUN(mkostemps,(char *, int, int));
 int    _EXFUN(mkstemp,(char *));
 int    _EXFUN(mkstemps,(char *, int));
-char * _EXFUN(mktemp,(char *) _ATTRIBUTE ((__warning__ ("the use of `mktemp' is dangerous; use `mkstemp' instead"))));
+char * _EXFUN(mktemp,(char *) _ATTRIBUTE ((__deprecated__("the use of `mktemp' is dangerous; use `mkstemp' instead"))));
 #endif
 char * _EXFUN(_mkdtemp_r, (struct _reent *, char *));
 int    _EXFUN(_mkostemp_r, (struct _reent *, char *, int));
 int    _EXFUN(_mkostemps_r, (struct _reent *, char *, int, int));
 int    _EXFUN(_mkstemp_r, (struct _reent *, char *));
 int    _EXFUN(_mkstemps_r, (struct _reent *, char *, int));
-char * _EXFUN(_mktemp_r, (struct _reent *, char *) _ATTRIBUTE ((__warning__ ("the use of `mktemp' is dangerous; use `mkstemp' instead"))));
+char * _EXFUN(_mktemp_r, (struct _reent *, char *) _ATTRIBUTE ((__deprecated__("the use of `mktemp' is dangerous; use `mkstemp' instead"))));
 #endif
 _VOID  _EXFUN(qsort,(_PTR __base, size_t __nmemb, size_t __size, __compar_fn_t _compar));
 int    _EXFUN(rand,(_VOID));
This page took 0.045999 seconds and 5 git commands to generate.