From ad36659ffa984a0541cfc2bd27f393e0d7d173a7 Mon Sep 17 00:00:00 2001 From: Steve Ellcey Date: Fri, 24 Oct 2014 10:37:51 +1100 Subject: * dejagnu.h (pass): Make function static as well as inline. (xpass): Ditto. (fail): Ditto. (xfail): Ditto. (untested): Ditto. (unresolved): Ditto. (note): Ditto. (totals): Ditto. Signed-off-by: Ben Elliston --- ChangeLog | 11 +++++++++++ dejagnu.h | 16 ++++++++-------- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index d639956..1f706f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2014-10-24 Steve Ellcey + + * dejagnu.h (pass): Make function static as well as inline. + (xpass): Ditto. + (fail): Ditto. + (xfail): Ditto. + (untested): Ditto. + (unresolved): Ditto. + (note): Ditto. + (totals): Ditto. + 2014-10-14 Ben Elliston * runtest.exp: Only match $directory, not *${directory}* when the diff --git a/dejagnu.h b/dejagnu.h index ff84bd7..45ee070 100644 --- a/dejagnu.h +++ b/dejagnu.h @@ -60,7 +60,7 @@ wait (void) #endif } -inline void +static inline void pass (const char* fmt, ...) { va_list ap; @@ -73,7 +73,7 @@ pass (const char* fmt, ...) wait (); } -inline void +static inline void xpass (const char* fmt, ...) { va_list ap; @@ -86,7 +86,7 @@ xpass (const char* fmt, ...) wait (); } -inline void +static inline void fail (const char* fmt, ...) { va_list ap; @@ -99,7 +99,7 @@ fail (const char* fmt, ...) wait (); } -inline void +static inline void xfail (const char* fmt, ...) { va_list ap; @@ -112,7 +112,7 @@ xfail (const char* fmt, ...) wait (); } -inline void +static inline void untested (const char* fmt, ...) { va_list ap; @@ -125,7 +125,7 @@ untested (const char* fmt, ...) wait (); } -inline void +static inline void unresolved (const char* fmt, ...) { va_list ap; @@ -138,7 +138,7 @@ unresolved (const char* fmt, ...) wait (); } -inline void +static inline void note (const char* fmt, ...) { va_list ap; @@ -150,7 +150,7 @@ note (const char* fmt, ...) wait (); } -inline void +static inline void totals (void) { printf ("\nTotals:\n"); -- cgit v1.1