1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Describe and date modifications we made per LGPL requirements.

llvm-svn: 29569
This commit is contained in:
John Criswell 2006-08-08 14:47:54 +00:00
parent 2d50f76605
commit f037045e9f
2 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,13 @@
//===-- qsort.c - The qsort function for the LLVM libc Library ----*- C -*-===//
//
// This code is a modified form of the qsort() function from the GNU C
// library.
//
// Modifications:
// 2003/05/29 - Code disabled for compilation. Line wrapping changed.
//
//===----------------------------------------------------------------------===//
/* Copyright (C) 1991, 1992, 1996, 1997, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Written by Douglas C. Schmidt (schmidt@ics.uci.edu).

View File

@ -1,6 +1,11 @@
//===-- remove.c - The remove function for the LLVM libc Library --*- C -*-===//
//
// A lot of this code is ripped gratuitously from glibc and libiberty.
// This code is a modified form of the remove() function from the GNU C
// library.
//
// Modifications:
// 2005/11/28 - Added to LLVM tree. Functions renamed to allow compilation.
// Code to control symbol linkage types removed.
//
//===----------------------------------------------------------------------===//