summaryrefslogtreecommitdiff
path: root/gcc/ada/s-atocou.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/s-atocou.adb')
-rw-r--r--gcc/ada/s-atocou.adb11
1 files changed, 10 insertions, 1 deletions
diff --git a/gcc/ada/s-atocou.adb b/gcc/ada/s-atocou.adb
index 8f2ca01b6d9..51cc79ba59d 100644
--- a/gcc/ada/s-atocou.adb
+++ b/gcc/ada/s-atocou.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 2011, AdaCore --
+-- Copyright (C) 2011-2013, 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- --
@@ -57,6 +57,15 @@ package body System.Atomic_Counters is
raise Program_Error;
end Increment;
+ ----------------
+ -- Initialize --
+ ----------------
+
+ procedure Initialize (Item : out Atomic_Counter) is
+ begin
+ raise Program_Error;
+ end Initialize;
+
------------
-- Is_One --
------------