Replace use of _inline and __inline with inline

AC_C_INLINE in configure.in defines inline as a macro where necessary.
This commit is contained in:
Kevin Easton
2017-11-27 22:54:00 +11:00
parent a60937a8fd
commit 256b33747c
5 changed files with 39 additions and 40 deletions

View File

@@ -897,7 +897,7 @@ int bsd_setenv(const char *name, const char *value, int rewrite);
*
* This routine *should* be a static; don't use it.
*/
__inline__ static char *__findenv(const char *name, int *offset)
static char *__findenv(const char *name, int *offset)
{
extern char **environ;
register int len, i;