aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGene Cumm <gene.cumm@gmail.com>2016-11-27 10:51:20 -0500
committerGene Cumm <gene.cumm@gmail.com>2016-11-27 10:51:20 -0500
commitbb41e935cc83c6242de24d2271e067d76af3585c (patch)
tree8ccf0a8244322f94b17aa081de1c2765cca2112d
parent529154d395e2060e3451dfd2920fb5f7692cc9bd (diff)
downloadsyslinux-bb41e935cc83c6242de24d2271e067d76af3585c.tar.gz
syslinux-bb41e935cc83c6242de24d2271e067d76af3585c.tar.xz
syslinux-bb41e935cc83c6242de24d2271e067d76af3585c.zip
pxe_api.h: finish revert of 9acbffd
9acbffd33b9200ffe37833463b4d4478e824295a caused more issues than it solves. There appears to be a bigger underlying issue that the __weak argument masks. Until the underlying issue is solved, we need __weak. Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
-rw-r--r--com32/include/syslinux/pxe_api.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/com32/include/syslinux/pxe_api.h b/com32/include/syslinux/pxe_api.h
index 9b90e638..37c9cfba 100644
--- a/com32/include/syslinux/pxe_api.h
+++ b/com32/include/syslinux/pxe_api.h
@@ -587,9 +587,9 @@ typedef struct s_PXENV_UNLOAD_STACK {
int __weak pxe_call(int, void *);
void __weak unload_pxe(uint16_t flags);
-uint32_t pxe_dns(const char *);
+uint32_t __weak pxe_dns(const char *);
-extern uint32_t SendCookies;
-void http_bake_cookies(void);
+extern uint32_t __weak SendCookies;
+void __weak http_bake_cookies(void);
#endif /* _SYSLINUX_PXE_API_H */