python312Packages.vdf: avoid using pname for src.repo
[NixPkgs.git] / pkgs / os-specific / linux / tcp-wrappers / cdecls.patch
blobeee640e8a8242468e01176f8fc2b05f4cb4bb6a9
1 __BEGIN_DECLS/__END_DECLS are BSD specific and not defined in musl
2 glibc and uclibc had sys/cdefs.h doing it.
4 Upstream-Status: Pending
5 Signed-off-by: Khem Raj <raj.khem@gmail.com>
7 Index: tcp_wrappers_7.6/tcpd.h
8 ===================================================================
9 --- tcp_wrappers_7.6.orig/tcpd.h
10 +++ tcp_wrappers_7.6/tcpd.h
11 @@ -11,7 +11,9 @@
12 #include <netinet/in.h>
13 #include <stdio.h>
15 -__BEGIN_DECLS
16 +#ifdef __cplusplus
17 +extern "C" {
18 +#endif
20 /* Structure to describe one communications endpoint. */
22 @@ -252,6 +254,8 @@ extern char *fix_strtok();
23 extern char *my_strtok();
24 #endif
26 -__END_DECLS
27 +#ifdef __cplusplus
29 +#endif
31 #endif