]> git.sur5r.net Git - cc65/blob - libsrc/atmos/getenv.s
Small size optimizations
[cc65] / libsrc / atmos / getenv.s
1 ;
2 ; Ullrich von Bassewitz, 2003-05-02
3 ;
4 ; char* getenv (const char* name);
5 ;
6
7         .export         _getenv
8         .import         return0
9
10 _getenv = return0               ; "not found"
11
12