diff options
Diffstat (limited to 'libbb/find_pid_by_name.c')
-rw-r--r-- | libbb/find_pid_by_name.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/find_pid_by_name.c b/libbb/find_pid_by_name.c index 8dcdb13..ae2f116 100644 --- a/libbb/find_pid_by_name.c +++ b/libbb/find_pid_by_name.c @@ -48,7 +48,7 @@ and therefore comm field contains "exe". * Returns a list of all matching PIDs * It is the caller's duty to free the returned pidlist. */ -pid_t* find_pid_by_name(const char* procName) +pid_t* FAST_FUNC find_pid_by_name(const char* procName) { pid_t* pidList; int i = 0; @@ -74,7 +74,7 @@ pid_t* find_pid_by_name(const char* procName) return pidList; } -pid_t *pidlist_reverse(pid_t *pidList) +pid_t* FAST_FUNC pidlist_reverse(pid_t *pidList) { int i = 0; while (pidList[i]) |