~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to incl/aglposix.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* @(#)aglposix.h       19.1 (ESO-IPG) 02/25/03 13:49:24 */
 
2
/*
 
3
 * HEADER : aglposix.h     - Vers 3.6.000  - May 1993 -  C.Guirao, ESO
 
4
 *
 
5
 *
 
6
 * This file contains standard includes needed by AGL, suitable
 
7
 * for any Posix conforming system
 
8
 *
 
9
 * 15-Jul-92: strings.h strrchr() & strchr() automatically defined. CG.
 
10
 */
 
11
 
 
12
#define UNIX                 /* Define this system as Unix                  */
 
13
 
 
14
#include <stdio.h>           /*    Standard libraries                       */
 
15
#include <stdlib.h>          /*    Function libraries                       */
 
16
#include <fcntl.h>
 
17
#include <ctype.h>
 
18
#include <math.h>
 
19
#include <errno.h>
 
20
#include <signal.h>
 
21
#include <sys/types.h>
 
22
#include <termios.h>
 
23
#include <sys/stat.h>
 
24
#include <netinet/in.h>
 
25
#include <netdb.h>
 
26
#include <sys/time.h>
 
27
#include <sys/socket.h>
 
28
#include <sys/un.h>
 
29
 
 
30
#ifndef MIDAS                   /* Midas has his own mechanism to do that   */
 
31
 
 
32
#include <strings.h>
 
33
#define strchr(a,b)     index(a,b)
 
34
#define strrchr(a,b)    rindex(a,b)
 
35
 
 
36
#endif