From fddaec02ee30af741157c4a018136b00bb688377 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Sun, 15 Oct 2006 22:56:02 +0200 Subject: [PATCH] [CLEANUP] fd.h : regparm was hardcoded. --- include/proto/fd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/proto/fd.h b/include/proto/fd.h index 1d480af9c..e41fcd151 100644 --- a/include/proto/fd.h +++ b/include/proto/fd.h @@ -52,9 +52,9 @@ void fd_delete(int fd); # 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 -- 2.47.3