pxe_api.h: remove __weak from prototypes

The prototypes themselves are not weak, and declaring them as
such forces the core definitions, which should not be weak, as weak.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
diff --git a/com32/include/syslinux/pxe_api.h b/com32/include/syslinux/pxe_api.h
index 3e994c0..d1fea37 100644
--- a/com32/include/syslinux/pxe_api.h
+++ b/com32/include/syslinux/pxe_api.h
@@ -585,11 +585,11 @@
 #define PXENV_STATUS_LOADER_UNDI_START			 0xca
 #define PXENV_STATUS_LOADER_BC_START			 0xcb
 
-int __weak pxe_call(int, void *);
-void __weak unload_pxe(uint16_t flags);
-uint32_t __weak dns_resolv(const char *);
+int pxe_call(int, void *);
+void unload_pxe(uint16_t flags);
+uint32_t dns_resolv(const char *);
 
-extern uint32_t __weak SendCookies;
-void __weak http_bake_cookies(void);
+extern uint32_t SendCookies;
+void http_bake_cookies(void);
 
 #endif /* _SYSLINUX_PXE_API_H */