diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 21:28:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-16 21:28:12 +0000 |
commit | 6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch) | |
tree | ee423c619fad03813234b9362694a17f3a638f0b /include/link.h | |
parent | c707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff) |
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'include/link.h')
-rw-r--r-- | include/link.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/link.h b/include/link.h index ab1b244516f..a45eacd0300 100644 --- a/include/link.h +++ b/include/link.h @@ -1,4 +1,4 @@ -/* $OpenBSD: link.h,v 1.8 2001/06/08 07:45:18 art Exp $ */ +/* $OpenBSD: link.h,v 1.9 2002/02/16 21:27:17 millert Exp $ */ /* $NetBSD: link.h,v 1.10 1996/01/09 00:00:11 pk Exp $ */ /* @@ -202,12 +202,12 @@ struct r_debug { * Entry points into ld.so - user interface to the run-time linker. */ struct ld_entry { - void *(*dlopen) __P((const char *, int)); - int (*dlclose) __P((void *)); - void *(*dlsym) __P((void *, const char *)); - int (*dlctl) __P((void *, int, void *)); - void (*dlexit) __P((void)); - void (*dlrsrvd[3]) __P((void)); + void *(*dlopen)(const char *, int); + int (*dlclose)(void *); + void *(*dlsym)(void *, const char *); + int (*dlctl)(void *, int, void *); + void (*dlexit)(void); + void (*dlrsrvd[3])(void); }; /* |