[llvm-commits] CVS: llvm/lib/System/Darwin/Program.cpp
Reid Spencer
reid at x10sys.com
Sun Aug 29 12:20:52 PDT 2004
Changes in directory llvm/lib/System/Darwin:
Program.cpp added (r1.1)
---
Log message:
Initial commit of an platform-indepdendent implementation for the
"Program" operating system concept (find and execute programs).
---
Diffs of the changes: (+22 -0)
Index: llvm/lib/System/Darwin/Program.cpp
diff -c /dev/null llvm/lib/System/Darwin/Program.cpp:1.1
*** /dev/null Sun Aug 29 14:20:51 2004
--- llvm/lib/System/Darwin/Program.cpp Sun Aug 29 14:20:41 2004
***************
*** 0 ****
--- 1,22 ----
+ //===- Darwin/Program.cpp - Darwin Program Implementatino. ---- -*- C++ -*-===//
+ //
+ // The LLVM Compiler Infrastructure
+ //
+ // This file was developed by Reid Spencer and is distributed under the
+ // University of Illinois Open Source License. See LICENSE.TXT for details.
+ //
+ //===----------------------------------------------------------------------===//
+ //
+ // This file provides the Darwin specific implementation of the Program class.
+ //
+ //===----------------------------------------------------------------------===//
+
+ // Include the generic Unix implementation
+ #include "../Unix/Program.cpp"
+
+ //===----------------------------------------------------------------------===//
+ //=== WARNING: Implementation here must contain only Darwin specific code
+ //=== and must not be generic UNIX code (see ../Unix/Program.cpp)
+ //===----------------------------------------------------------------------===//
+
+ // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab
More information about the llvm-commits
mailing list