X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Fperror_msg.c;h=6c8e1b51ef8cfca1cf984f4301b2783644eb5141;hb=dcc921e3ca1d2e30d69cd2209d2c427e78a32a30;hp=af9ff5949804029f116ea36d20a906b085820b8b;hpb=0c97c9d43707da745fe2bc62ab2a69497ceaf666;p=oweals%2Fbusybox.git diff --git a/libbb/perror_msg.c b/libbb/perror_msg.c index af9ff5949..6c8e1b51e 100644 --- a/libbb/perror_msg.c +++ b/libbb/perror_msg.c @@ -9,7 +9,7 @@ #include "libbb.h" -void bb_perror_msg(const char *s, ...) +void FAST_FUNC bb_perror_msg(const char *s, ...) { va_list p; @@ -19,7 +19,7 @@ void bb_perror_msg(const char *s, ...) va_end(p); } -void bb_simple_perror_msg(const char *s) +void FAST_FUNC bb_simple_perror_msg(const char *s) { bb_perror_msg("%s", s); }