31 lines
839 B
C
31 lines
839 B
C
/* @(#)49 1.9 src/bos/usr/include/memory.h, libcgen, bos411, 9428A410j 6/16/90 00:12:04 */
|
|
/*
|
|
* COMPONENT_NAME: (LIBCGEN) Standard C Library General Functions
|
|
*
|
|
* FUNCTIONS:
|
|
*
|
|
* ORIGINS: 27
|
|
*
|
|
* (C) COPYRIGHT International Business Machines Corp. 1985, 1989
|
|
* All Rights Reserved
|
|
* Licensed Materials - Property of IBM
|
|
*
|
|
* US Government Users Restricted Rights - Use, duplication or
|
|
* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
|
|
*/
|
|
|
|
#ifndef _H_MEMORY
|
|
#define _H_MEMORY
|
|
|
|
/*
|
|
* libc memory function declarations...
|
|
* The ANSI C standard specifies its memory move functions to be
|
|
* declared in <string.h>. Therefore, all the memory move functions
|
|
* have been put in that header. <memory.h> is maintained for
|
|
* compatibility with earlier AIX releases.
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#endif /* _H_MEMORY */
|