-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathansi_c.h
31 lines (27 loc) · 886 Bytes
/
ansi_c.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*============================================================================*/
/* L a b W i n d o w s / C V I */
/*----------------------------------------------------------------------------*/
/* Copyright (c) National Instruments 1987-1995. All Rights Reserved. */
/*----------------------------------------------------------------------------*/
/* */
/* Title: ansi_c.h */
/* Purpose: Include file for entire ANSI Standard C Library */
/* */
/*============================================================================*/
#ifndef _ANSI_C
#define _ANSI_C
#include <ctype.h>
#include <errno.h>
#include <float.h>
#include <limits.h>
#include <locale.h>
#include <math.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#endif /* _ANSI_C */