* Convert C++ comments to C
authorMisha Brukman <brukman+llvm@gmail.com>
Wed, 4 Aug 2004 21:19:49 +0000 (21:19 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Wed, 4 Aug 2004 21:19:49 +0000 (21:19 +0000)
* Add UIUC copyright notice headers

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15503 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llee/ExecveHandler.c
tools/llee/OSInterface.h
tools/llee/SysUtils.c
tools/llee/SysUtils.h

index c7fad108f530fb032538b00678ecb95ef52f043d..088f1dba535c3967f1bacbec35cc9ddc7af7d986 100644 (file)
@@ -1,9 +1,16 @@
-//===-- ExecveHandler.c - Replaces execve() to run LLVM files -------------===//
-//
-// This file implements a replacement execve() to spawn off LLVM programs to run
-// transparently, without needing to be (JIT-)compiled manually by the user.
-//
-//===----------------------------------------------------------------------===//
+/*===-- ExecveHandler.c - Replaces execve() to run LLVM files -------------===*\
+ *                                                                            
+ *                     The LLVM Compiler Infrastructure                       
+ *
+ * This file was developed by the LLVM research group and is distributed under
+ * the University of Illinois Open Source License. See LICENSE.TXT for details.
+ * 
+ *===----------------------------------------------------------------------===
+ *
+ * This file implements a replacement execve() to spawn off LLVM programs to run
+ * transparently, without needing to be (JIT-)compiled manually by the user.
+ *
+\*===----------------------------------------------------------------------===*/
 
 #include "SysUtils.h"
 #include "Config/unistd.h"
index e886a60361b2ffd76b60840d02a394c22ab07679..26b48fd1af52a80fc8f11487bbf474dca7189585 100644 (file)
@@ -1,16 +1,16 @@
 /*===- OSInterface.h - Interface to query OS for functionality ---*- C -*--===*\
-// 
-//                     The LLVM Compiler Infrastructure
-//
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
-//===----------------------------------------------------------------------===//
-// 
- *                                                                            *
- * This file defines the prototype interface that we will expect operating    *
- * systems to implement if they wish to support offline cachine.              *
- *                                                                            *
+ * 
+ *                     The LLVM Compiler Infrastructure
+ *
+ * This file was developed by the LLVM research group and is distributed under
+ * the University of Illinois Open Source License. See LICENSE.TXT for details.
+ * 
+ *===----------------------------------------------------------------------===
+ * 
+ *                                                                            
+ * This file defines the prototype interface that we will expect operating    
+ * systems to implement if they wish to support offline cachine.              
+ *                                                                            
 \*===----------------------------------------------------------------------===*/
 
 #ifndef OS_INTERFACE_H
index 2ec6148a6601a9131446358a3a12ff8db9d2f5c9..d7bab1d989dabd9828a6fec48bcafc22729dfaab 100644 (file)
@@ -1,9 +1,16 @@
-//===- SystemUtils.h - Utilities to do low-level system stuff --*- C++ -*--===//
-//
-// This file contains functions used to do a variety of low-level, often
-// system-specific, tasks.
-//
-//===----------------------------------------------------------------------===//
+/*===- SystemUtils.h - Utilities to do low-level system stuff -------------===*\
+ *                                                                            
+ *                     The LLVM Compiler Infrastructure                       
+ *
+ * This file was developed by the LLVM research group and is distributed under
+ * the University of Illinois Open Source License. See LICENSE.TXT for details.
+ * 
+ *===----------------------------------------------------------------------===
+ *
+ * This file contains functions used to do a variety of low-level, often
+ * system-specific, tasks.
+ *
+\*===----------------------------------------------------------------------===*/
 
 #include "SysUtils.h"
 #include "Config/dlfcn.h"
index 8db79cc6206ef13e8545f2746bda2268930d3f74..8d1be4e835be5e398b8e3fa2876f5e0f5a13c669 100644 (file)
@@ -1,16 +1,16 @@
-/*===- SysUtils.h - Utilities to do low-level system stuff -------*- C -*--===*\
-// 
-//                     The LLVM Compiler Infrastructure
-//
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
-//===----------------------------------------------------------------------===//
-// 
- *                                                                            *
- * This file contains functions used to do a variety of low-level, often      *
- * system-specific, tasks.                                                    *
- *                                                                            *
+/*===- SysUtils.h - Utilities to do low-level system stuff ----------------===*\
+ *                                                                            
+ *                     The LLVM Compiler Infrastructure                       
+ *
+ * This file was developed by the LLVM research group and is distributed under
+ * the University of Illinois Open Source License. See LICENSE.TXT for details.
+ * 
+ *===----------------------------------------------------------------------===
+ *                                                                            
+ *                                                                            
+ * This file contains functions used to do a variety of low-level, often      
+ * system-specific, tasks.                                                    
+ *                                                                            
 \*===----------------------------------------------------------------------===*/
 
 #ifndef SYSUTILS_H