ash: deal with some TODOs (mostly trivial)
[oweals/busybox.git] / libbb / safe_poll.c
index d2b773c36b19d22f9933b3b548a0393ce6b5d122..58c7bda5ac99c9b1dc6c2196d0ee753cc5134f55 100644 (file)
@@ -12,7 +12,7 @@
 /* Wrapper which restarts poll on EINTR or ENOMEM.
  * On other errors does perror("poll") and returns.
  * Warning! May take longer than timeout_ms to return! */
-int safe_poll(struct pollfd *ufds, nfds_t nfds, int timeout)
+int FAST_FUNC safe_poll(struct pollfd *ufds, nfds_t nfds, int timeout)
 {
        while (1) {
                int n = poll(ufds, nfds, timeout);