(* Copyright (C) 1992, Digital Equipment Corporation *) (* All rights reserved. *) (* See the file COPYRIGHT for a full description. *) (* *) (* Last modified on Mon Apr 13 12:58:21 PDT 1992 by muller *) MODULE M3Config; IMPORT List; PROCEDURE Pub (): List.T = (* Returns a list of Text.T's. These are the directories in which the public interfaces are stored *) BEGIN RETURN List.List1 ("/m3/include"); END Pub; PROCEDURE Lib (): List.T = (* Returns a list of Text.T's. These are the directories in which the public libraries are stored *) BEGIN RETURN List.List1 ("/m3/lib"); END Lib; BEGIN END M3Config.