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:
authorJeff Johnston <jjohnstn@redhat.com>2005-01-22 00:55:07 +0300
committerJeff Johnston <jjohnstn@redhat.com>2005-01-22 00:55:07 +0300
commitb87d70463e5ddfa57dfc40b40971dceee1518374 (patch)
tree8bc7c043bac0af0c03be6d46878f7e75ed1ef3da /libgloss/libnosys
parent2804a58c4c235cfe4f1ba269db8d9445b60b192b (diff)
2005-01-21 Hans-Peter Nilsson <hp@axis.com>
* libnosys/warning.h (stub_warning): Remove "warning: " prefix.
Diffstat (limited to 'libgloss/libnosys')
-rw-r--r--libgloss/libnosys/warning.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libgloss/libnosys/warning.h b/libgloss/libnosys/warning.h
index 767a5de79..9232a9244 100644
--- a/libgloss/libnosys/warning.h
+++ b/libgloss/libnosys/warning.h
@@ -35,9 +35,10 @@
# define link_warning(symbol, msg)
#endif
-/* A canned warning for sysdeps/stub functions. */
+/* A canned warning for sysdeps/stub functions.
+ The GNU linker prepends a "warning: " string. */
#define stub_warning(name) \
link_warning (name, \
- "warning: " #name " is not implemented and will always fail")
+ #name " is not implemented and will always fail")
#endif /* __WARNING_H__ */