File: gnDefs.cpp

package info (click to toggle)
libgenome 1.3.1-7
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,156 kB
  • ctags: 1,212
  • sloc: cpp: 10,910; sh: 8,264; makefile: 79
file content (11 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "libGenome/gnDefs.h"

// some compilers don't have abs() for 64 bit ints
int64 abs( int64 a ){
	return a < 0 ? -a : a;
}