diff options
author | Gene Cumm <gene.cumm@gmail.com> | 2016-11-27 10:51:20 -0500 |
---|---|---|
committer | Gene Cumm <gene.cumm@gmail.com> | 2016-11-27 10:51:20 -0500 |
commit | bb41e935cc83c6242de24d2271e067d76af3585c (patch) | |
tree | 8ccf0a8244322f94b17aa081de1c2765cca2112d /com32/include/syslinux | |
parent | 529154d395e2060e3451dfd2920fb5f7692cc9bd (diff) | |
download | syslinux-master.tar.gz |
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>
Diffstat (limited to 'com32/include/syslinux')
-rw-r--r-- | com32/include/syslinux/pxe_api.h | 6 |
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 */ |