blob: 6d2994ff8781ca0efcc6211d507a49e1df9cd563 [file] [log] [blame]
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08001#include <strings.h>
2#include "atomic.h"
3
George Kulakowski17e3b042016-02-18 15:59:50 -08004int ffs(int i) {
5 return i ? a_ctz_l(i) + 1 : 0;
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08006}