forked from Lainports/freebsd-ports
Make the include directory search path match what exists. Make the lib directory search path match what exists. Submitted by: gallatin (partially)
34 lines
1.5 KiB
C
34 lines
1.5 KiB
C
/*
|
|
* *****************************************************************
|
|
* * *
|
|
* * Copyright (c) Compaq Computer Corporation, 1999, 2000 *
|
|
* * *
|
|
* * All Rights Reserved. Unpublished rights reserved under *
|
|
* * the copyright laws of the United States. *
|
|
* * *
|
|
* * The software contained on this media is proprietary to *
|
|
* * and embodies the confidential technology of Compaq *
|
|
* * Computer Corporation. Possession, use, duplication or *
|
|
* * dissemination of the software and media is authorized only *
|
|
* * pursuant to a valid written license from Compaq Computer *
|
|
* * Corporation. *
|
|
* * *
|
|
* * RESTRICTED RIGHTS LEGEND Use, duplication, or disclosure *
|
|
* * by the U.S. Government is subject to restrictions as set *
|
|
* * forth in Subparagraph (c)(1)(ii) of DFARS 252.227-7013, *
|
|
* * or in FAR 52.227-19, as applicable. *
|
|
* * *
|
|
* *****************************************************************
|
|
*/
|
|
#ifndef _CCC_MALLOC_H_
|
|
#define _CCC_MALLOC_H_
|
|
|
|
#include_next <malloc.h>
|
|
#undef NULL
|
|
#ifdef __cplusplus
|
|
#define NULL 0
|
|
#else
|
|
#define NULL 0L
|
|
#endif
|
|
|
|
#endif /* _CCC_MALLOC_H_ */
|