Replaced inline with static.
1999-02-18 Martin Baulig <martin@home-of-linux.org> * sysdeps/common/error.h: Replaced inline with static.
This commit is contained in:
committed by
Martin Baulig
parent
2deb3c30c4
commit
1da8264984
@@ -84,47 +84,3 @@ glibtop_warn_io_vr (glibtop *server, char *format, gint error, va_list args)
|
||||
abort ();
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifndef G_CAN_INLINE
|
||||
|
||||
G_INLINE_FUNC void
|
||||
glibtop_error_r (glibtop *server, char *format, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
||||
va_start (args, format);
|
||||
glibtop_error_vr (server, format, args);
|
||||
va_end (args);
|
||||
}
|
||||
|
||||
G_INLINE_FUNC void
|
||||
glibtop_warn_r (glibtop *server, char *format, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
||||
va_start (args, format);
|
||||
glibtop_warn_vr (server, format, args);
|
||||
va_end (args);
|
||||
}
|
||||
|
||||
G_INLINE_FUNC void
|
||||
glibtop_error_io_r (glibtop *server, char *format, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
||||
va_start (args, format);
|
||||
glibtop_error_io_vr (server, format, errno, args);
|
||||
va_end (args);
|
||||
}
|
||||
|
||||
G_INLINE_FUNC void
|
||||
glibtop_warn_io_r (glibtop *server, char *format, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
||||
va_start (args, format);
|
||||
glibtop_warn_io_vr (server, format, errno, args);
|
||||
va_end (args);
|
||||
}
|
||||
|
||||
#endif /* not G_CAN_INLINE */
|
||||
|
||||
Reference in New Issue
Block a user