2003-08-12 13:24:25 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2003-08-12
|
|
|
|
;
|
|
|
|
; int __fastcall__ chdir (const char* name);
|
|
|
|
;
|
|
|
|
|
|
|
|
.export _chdir
|
|
|
|
|
|
|
|
.import __syschdir
|
2010-06-10 18:10:53 +00:00
|
|
|
.import __mappederrno
|
2003-08-12 13:24:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
2003-08-12 13:51:11 +00:00
|
|
|
; The function calls __syschdir, which must check the directory, set it, and
|
|
|
|
; copy it to __cwd if it is valid. The copycwd may be used for the latter.
|
2003-08-12 13:24:25 +00:00
|
|
|
|
|
|
|
.proc _chdir
|
|
|
|
|
|
|
|
jsr __syschdir ; Call the machine specific function
|
2010-06-10 18:10:53 +00:00
|
|
|
jmp __mappederrno ; Store into _oserror, set errno, return 0/-1
|
2003-08-12 13:24:25 +00:00
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|