/*-------------------------------------------------------------------*/
/* Copyright (c) 1993-1994        by SAS Institute Inc., Cary NC     */
/*                                                                   */
/* NAME:       libc.h                                                */
/* AUTHOR:     Gavin Koch - IBM 370 C Compiler department            */
/* DATE:                                                             */
/* SUPPORT:    sasgak - IBM 370 C Compiler department                */
/* PRODUCT:    C++ Library                                           */
/* LANGUAGE:   C++                                                   */
/* MACHINE:    all                                                   */
/* PURPOSE:                                                          */
/*                                                                   */
/* HISTORY:    action                                   date   name  */
/*             Added this description header.         93/03/18  gww  */
/*             Changed __alignmem to #define          94/10/04  gak  */
/* NOTES:                                                            */
/* ALGORITHM:                                                        */
/* END                                                               */
/*-------------------------------------------------------------------*/
#ifndef __LIBC_H
#define __LIBC_H
/* for compatibility with old programs only */
/*  new code should just use stdlib.h       */
/*  which will prob. be part of ANSI C++    */
/*  std. whereas libc.h will prob. not.     */
#include <stdlib.h>

#endif /* __LIBC_H */

