ansification: remove _EXFUN, _EXFUN_NOTHROW

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
Yaakov Selkowitz
2017-12-03 23:54:48 -06:00
parent 77f16db546
commit 70ee6b17df
98 changed files with 1740 additions and 1798 deletions

View File

@ -32,8 +32,8 @@ details. */
__BEGIN_DECLS
ssize_t _EXFUN(getline, (char **, size_t *, FILE *));
ssize_t _EXFUN(getdelim, (char **, size_t *, int, FILE *));
ssize_t getline (char **, size_t *, FILE *);
ssize_t getdelim (char **, size_t *, int, FILE *);
__END_DECLS

View File

@ -19,7 +19,7 @@ struct utimbuf
time_t modtime;
};
int _EXFUN(utime, (const char *__path, const struct utimbuf *__buf));
int utime (const char *__path, const struct utimbuf *__buf);
#ifdef __cplusplus
};