File: _types.h

package info (click to toggle)
gvidm 0.8-11
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 396 kB
  • sloc: cpp: 1,049; sh: 153; python: 104; makefile: 66
file content (20 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __GVIDM_TYPES_H__
#define __GVIDM_TYPES_H__

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#if HAVE_INTTYPES_H
# include <inttypes.h>
#else
# if HAVE_STDINT_H
#  include <stdint.h>
# endif
#endif

#ifndef HAVE_UINTPTR_T
typedef unsigned int uintptr_t;
#endif

#endif