~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to dotneato/common/render.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    This software may only be used by you under license from AT&T Corp.
 
3
    ("AT&T").  A copy of AT&T's Source Code Agreement is available at
 
4
    AT&T's Internet website having the URL:
 
5
    <http://www.research.att.com/sw/tools/graphviz/license/source.html>
 
6
    If you received this software without first entering into a license
 
7
    with AT&T, you have an infringing copy of this software and cannot use
 
8
    it without violating AT&T's intellectual property rights.
 
9
*/
 
10
 
 
11
#ifndef               RENDER_H
 
12
#define               RENDER_H
 
13
 
 
14
#ifdef _PACKAGE_AST
 
15
#include <ast.h>
 
16
#endif
 
17
 
 
18
#ifdef HAVE_CONFIG_H
 
19
#include "gvconfig.h"
 
20
#endif
 
21
 
 
22
#include <signal.h>
 
23
#include <assert.h>
 
24
#include <ctype.h>
 
25
#include <math.h>
 
26
#include <stdio.h>
 
27
#include <stdlib.h>
 
28
#include <string.h>
 
29
 
 
30
#include "macros.h"
 
31
#include "const.h"   /* must follow gvconfig.h */
 
32
#include "types.h"
 
33
#include "graph.h"   /* must follow types.h */
 
34
#include "globals.h"
 
35
#include "renderprocs.h"
 
36
 
 
37
#ifndef NIL
 
38
#define NIL(type)       ((type)0)
 
39
#endif /*NIL*/
 
40
 
 
41
#endif /* RENDER_H */