Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/spu/unlink.c')
-rw-r--r--libgloss/spu/unlink.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libgloss/spu/unlink.c b/libgloss/spu/unlink.c
index 6d143ca54..47b02a6a4 100644
--- a/libgloss/spu/unlink.c
+++ b/libgloss/spu/unlink.c
@@ -30,7 +30,6 @@ POSSIBILITY OF SUCH DAMAGE.
Author: Andreas Neukoetter (ti95neuk@de.ibm.com)
*/
-#include <errno.h>
#include "jsre.h"
int
@@ -41,9 +40,8 @@ unlink (const char *pathname)
sys.pathname = ( unsigned int )pathname;
- _send_to_ppe (JSRE_POSIX1_SIGNALCODE, JSRE_UNLINK, &sys);
+ __send_to_ppe (JSRE_POSIX1_SIGNALCODE, JSRE_UNLINK, &sys);
- errno = psys_out->err;
return ( psys_out->rc);
}