home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************/
- /* */
- /* INTEL CORPORATION PROPRIETARY INFORMATION. */
- /* THIS LISTING IS SUPPLIED UNDER THE TERMS OF A LICENSE */
- /* AGREEMENT OR NON-DISCLOSURE AGREEMENT WITH INTEL CORPORATION */
- /* AND MAY NOT BE COPIED NOR DISCLOSED EXCEPT IN ACCORDANCE */
- /* WITH THE TERMS OF THAT AGREEMENT. */
- /* */
- /******************************************************************/
-
- int abs(); /* Absolute number of an int */
- long int labs(long int); /* Absolute number of a long int */
- double fabs(double); /* Absolute number of a floating-point number */
-
- int atoi(); /* Convert Ascii string to int */
- long int atol(); /* Convert Ascii string to long int */
- double atof(); /* Convert Ascii string to floating-point */
-
- void qsort(); /* Sort an array using quick-sort */
- void *bsearch(); /* Find an element in a sorted array */
-