*: introduce and use FAST_FUNC: regparm on i386, otherwise no-on
[oweals/busybox.git] / libbb / selinux_common.c
index 7478cc7b595bdc272e0f05fc21f6e72b94a4bdd4..5fdbe9d5870684ce256fd0c923d84427dbb0cbfe 100644 (file)
@@ -7,7 +7,7 @@
 #include "libbb.h"
 #include <selinux/context.h>
 
-context_t set_security_context_component(security_context_t cur_context,
+context_t FAST_FUNC set_security_context_component(security_context_t cur_context,
                                         char *user, char *role, char *type, char *range)
 {
        context_t con = context_new(cur_context);
@@ -29,7 +29,7 @@ error:
        return NULL;
 }
 
-void setfscreatecon_or_die(security_context_t scontext)
+void FAST_FUNC setfscreatecon_or_die(security_context_t scontext)
 {
        if (setfscreatecon(scontext) < 0) {
                /* Can be NULL. All known printf implementations
@@ -39,7 +39,7 @@ void setfscreatecon_or_die(security_context_t scontext)
        }
 }
 
-void selinux_preserve_fcontext(int fdesc)
+void FAST_FUNC selinux_preserve_fcontext(int fdesc)
 {
        security_context_t context;