[CLEANUP] fd.h : regparm was hardcoded.
diff --git a/include/proto/fd.h b/include/proto/fd.h
index 1d480af..e41fcd1 100644
--- a/include/proto/fd.h
+++ b/include/proto/fd.h
@@ -52,9 +52,9 @@
 # define MY_FD_CLR   my_fd_clr
 # define MY_FD_ISSET my_fd_isset
 
-void __attribute__((regparm(2))) my_fd_set(const int fd, fd_set *ev);
-void __attribute__((regparm(2))) my_fd_clr(const int fd, fd_set *ev);
-int __attribute__((regparm(2))) my_fd_isset(const int fd, const fd_set *ev);
+REGPRM2 void my_fd_set(const int fd, fd_set *ev);
+REGPRM2 void my_fd_clr(const int fd, fd_set *ev);
+REGPRM2 int my_fd_isset(const int fd, const fd_set *ev);
 
 #endif