File: stdint.hin

package info (click to toggle)
heimdal 1.6~rc2%2Bdfsg-9
  • links: PTS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 34,452 kB
  • sloc: ansic: 323,145; sh: 7,757; makefile: 4,690; yacc: 3,046; perl: 1,933; python: 748; lex: 732; awk: 468; java: 119; asm: 30; lisp: 29
file content (15 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _STDINT_H
#define _STDINT_H

#ifdef __cplusplus
extern "C" {
#endif

typedef long long int64_t;
typedef unsigned long long uint64_t;

#ifdef __cplusplus
}
#endif

#endif	/* _STDINT_H */