home *** CD-ROM | disk | FTP | other *** search
- /*
- File: CircLib1.c
-
- Contains: Test for cyclical dependencies working
-
- Copyright: © 1992-1993 by Apple Computer, Inc., all rights reserved.
-
- */
-
- #include <LibraryManagerUtilities.h>
-
- static int gGlobalValue = 515;
-
- int CircLib1()
- {
- GlobalWorld saved = OpenGlobalWorld();
- int foo = gGlobalValue;
- CloseGlobalWorld(saved);
- return foo;
- }
-
- OSErr UnloadCircLib1()
- {
- return UnloadLibraries();
- }