mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
- Changed how error conditions raised by dos.library file I/O functions
are detected. - Modified function return values of 0 and -1 to use macros like OK, ERROR/SEEK_ERROR instead, to better convey what the purpose of these values is. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14922 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: stdlib_system.c,v 1.7 2005-03-25 08:50:59 obarthel Exp $
|
||||
* $Id: stdlib_system.c,v 1.8 2005-04-24 08:46:37 obarthel Exp $
|
||||
*
|
||||
* :ts=4
|
||||
*
|
||||
@ -122,7 +122,7 @@ system(const char * command)
|
||||
{
|
||||
__set_errno(ENAMETOOLONG);
|
||||
|
||||
result = -1;
|
||||
result = ERROR;
|
||||
goto out;
|
||||
}
|
||||
|
||||
@ -140,7 +140,7 @@ system(const char * command)
|
||||
|
||||
if(__translate_unix_to_amiga_path_name((const char **)&command_name,&command_nti) != 0)
|
||||
{
|
||||
result = -1;
|
||||
result = ERROR;
|
||||
goto out;
|
||||
}
|
||||
|
||||
@ -150,7 +150,7 @@ system(const char * command)
|
||||
{
|
||||
__set_errno(ENOMEM);
|
||||
|
||||
result = -1;
|
||||
result = ERROR;
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user