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/m68k/bdm-unlink.c')
-rw-r--r--libgloss/m68k/bdm-unlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/m68k/bdm-unlink.c b/libgloss/m68k/bdm-unlink.c
index 05098ae7a..29f807204 100644
--- a/libgloss/m68k/bdm-unlink.c
+++ b/libgloss/m68k/bdm-unlink.c
@@ -35,7 +35,7 @@ int unlink (const char *path)
gdb_parambuf_t parameters;
parameters[0] = (uint32_t) path;
parameters[1] = (uint32_t) strlen (path) + 1;
- BDM_TRAP (BDM_UNLINK, (uint32_t)parameters);
+ __bdm_semihost (BDM_UNLINK, parameters);
errno = convert_from_gdb_errno (parameters[1]);
return parameters[0];
}