add TFD_TIMER_CANCEL_ON_SET that timerfd.h was missing

linux commit 575b1967e10a1f3038266244d2c7a3ca6b99fed8 moved timerfd
apis to a new uapi header which showed musl was missing this flag.
diff --git a/include/sys/timerfd.h b/include/sys/timerfd.h
index 9724d90..2794d36 100644
--- a/include/sys/timerfd.h
+++ b/include/sys/timerfd.h
@@ -12,6 +12,7 @@
 #define TFD_CLOEXEC O_CLOEXEC
 
 #define TFD_TIMER_ABSTIME 1
+#define TFD_TIMER_CANCEL_ON_SET (1 << 1)
 
 struct itimerspec;