9 lines
227 B
Ada
9 lines
227 B
Ada
package Alire.Operating_Systems with Preelaborate is
|
|
|
|
type Operating_Systems is (GNU_Linux, Windows);
|
|
|
|
Current : constant Operating_Systems := GNU_Linux;
|
|
-- Until this is ported elswhere
|
|
|
|
end Alire.Operating_Systems;
|