summaryrefslogtreecommitdiffstats
path: root/gcc/ada/s-strops.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/s-strops.adb')
-rw-r--r--gcc/ada/s-strops.adb22
1 files changed, 1 insertions, 21 deletions
diff --git a/gcc/ada/s-strops.adb b/gcc/ada/s-strops.adb
index 01b431dc1be..5440f72f53e 100644
--- a/gcc/ada/s-strops.adb
+++ b/gcc/ada/s-strops.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1992-1998 Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2002 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -102,26 +102,6 @@ package body System.String_Ops is
end if;
end Str_Concat_SC;
- ---------------
- -- Str_Equal --
- ---------------
-
- function Str_Equal (A, B : String) return Boolean is
- begin
- if A'Length /= B'Length then
- return False;
-
- else
- for J in A'Range loop
- if A (J) /= B (J + (B'First - A'First)) then
- return False;
- end if;
- end loop;
-
- return True;
- end if;
- end Str_Equal;
-
-------------------
-- Str_Normalize --
-------------------
OpenPOWER on IntegriCloud