Skip to content
Snippets Groups Projects
Commit 28eba57c authored by Vincent Celier's avatar Vincent Celier Committed by Arnaud Charlet
Browse files

mlib-tgt-specific.adb (Support_For_Libraries): New function...

2007-10-15  Vincent Celier  <celier@adacore.com>

	* mlib-tgt-specific.adb (Support_For_Libraries): New function,
	returning None, used when there is no platform specific body for
	MLib.Tgt.Specific.

From-SVN: r129326
parent 2cd6f54e
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,24 @@ ...@@ -24,7 +24,24 @@
-- -- -- --
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
-- Default empty version -- Default version
package body MLib.Tgt.Specific is package body MLib.Tgt.Specific is
-- By default, libraries are not supported at all
function Support_For_Libraries return Library_Support;
-- Function indicating if libraries are supported
---------------------------
-- Support_For_Libraries --
---------------------------
function Support_For_Libraries return Library_Support is
begin
return None;
end Support_For_Libraries;
begin
Support_For_Libraries_Ptr := Support_For_Libraries'Access;
end MLib.Tgt.Specific; end MLib.Tgt.Specific;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment