File: portability.h

package info (click to toggle)
bidwatcher 1.3.17-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 936 kB
  • ctags: 717
  • sloc: cpp: 6,505; sh: 2,970; makefile: 62
file content (16 lines) | stat: -rw-r--r-- 257 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef PORTABILITY_H
#define PORTABILITY_H

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

#ifdef HAVE_LLU
#  define LLU_FMT "%llu"
#else
#  ifdef HAVE_QU
#    define LLU_FMT "%qu"
#  endif /* HAVE_QU */
#endif /* HAVE_LLU */

#endif /* PORTABILITY_H */