Skip to content

Commit

Permalink
2.36.08
Browse files Browse the repository at this point in the history
  • Loading branch information
nidud committed Dec 6, 2024
1 parent 07a1f16 commit e69eda2
Show file tree
Hide file tree
Showing 7 changed files with 121 additions and 191 deletions.
4 changes: 2 additions & 2 deletions include/stdlib.inc
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ endif ; _WSTDLIB_DEFINED

_CVTBUFSIZE equ (309+40) ;; # of digits in max. dp value + slop

_fullpath proto __cdecl :string_t, :string_t, :int_t
_fullpath proto __cdecl :string_t, :string_t, :size_t

_ecvt_s proto __cdecl :string_t, :size_t, :real8, :int_t, :ptr int_t, :ptr int_t
_ecvt proto __cdecl :real8, :int_t, :ptr int_t, :ptr int_t
Expand Down Expand Up @@ -584,7 +584,7 @@ _swab proto __cdecl :string_t, :string_t, :int_t
ifndef _WSTDLIBP_DEFINED
define _WSTDLIBP_DEFINED

_wfullpath proto __cdecl :wstring_t, :wstring_t, :int_t
_wfullpath proto __cdecl :wstring_t, :wstring_t, :size_t
_wmakepath_s proto __cdecl :wstring_t, :size_t, :wstring_t, :wstring_t, :wstring_t, :wstring_t
ifndef _CRT_WPERROR_DEFINED
define _CRT_WPERROR_DEFINED
Expand Down
2 changes: 1 addition & 1 deletion include/wchar.inc
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ ifndef _POSIX_

ifndef _WSTDLIBP_DEFINED
define _WSTDLIBP_DEFINED
_wfullpath proto __cdecl :ptr wchar_t, :ptr wchar_t, :int_t
_wfullpath proto __cdecl :ptr wchar_t, :ptr wchar_t, :size_t
_wmakepath proto __cdecl :ptr wchar_t, :ptr wchar_t, :ptr wchar_t, :ptr wchar_t, :ptr wchar_t
_wperror proto __cdecl :ptr wchar_t
_wputenv proto __cdecl :ptr wchar_t
Expand Down
4 changes: 3 additions & 1 deletion source/libc/direct/_tgetcwd.asm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
; Copyright (c) The Asmc Contributors. All rights reserved.
; Consult your license regarding permissions and restrictions.
;

; char * _getcwd(char *, int);
; wchar_t * _wgetcwd(wchar_t *, int);
;
include direct.inc
ifdef __UNIX__
include errno.inc
Expand Down
Loading

0 comments on commit e69eda2

Please sign in to comment.