diff options
Diffstat (limited to 'crt')
-rw-r--r-- | crt/nt32/crtn.s | 5 | ||||
-rw-r--r-- | crt/nt64/crtn.s | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/crt/nt32/crtn.s b/crt/nt32/crtn.s index d639992..752429b 100644 --- a/crt/nt32/crtn.s +++ b/crt/nt32/crtn.s @@ -1,4 +1,9 @@ .text + +.globl ___chkstk_ms +___chkstk_ms: + ret + .globl __pei386_runtime_relocator __pei386_runtime_relocator: ret diff --git a/crt/nt64/crtn.s b/crt/nt64/crtn.s index 5259fd7..bb31c67 100644 --- a/crt/nt64/crtn.s +++ b/crt/nt64/crtn.s @@ -1,4 +1,9 @@ .text + +.globl ___chkstk_ms +___chkstk_ms: + ret + .globl _pei386_runtime_relocator _pei386_runtime_relocator: ret |