mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
13 lines
150 B
ArmAsm
13 lines
150 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 2004-10-08
|
||
|
;
|
||
|
; char* getenv (const char* name);
|
||
|
;
|
||
|
|
||
|
.export _getenv
|
||
|
.import return0
|
||
|
|
||
|
_getenv = return0 ; "not found"
|
||
|
|
||
|
|