Added a prototype for _seterrno().

git-svn-id: svn://svn.cc65.org/cc65/trunk@4686 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2010-06-03 20:12:55 +00:00
parent bc2fb18752
commit 0d8727ea33

View file

@ -47,6 +47,9 @@ extern unsigned char _oserror;
*/
int __fastcall__ _osmaperrno (unsigned char oserror);
/* Set errno to a specific error code. Used by the library */
void __fastcall__ _seterrno (unsigned char code);
/* System error codes go here */
extern int _errno;