File: asmlib_wrapper.h

package info (click to toggle)
kmc 2.3%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,412 kB
  • sloc: cpp: 17,316; perl: 178; makefile: 90; sh: 16
file content (23 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
  This file is a part of KMC software distributed under GNU GPL 3 licence.
  The homepage of the KMC project is http://sun.aei.polsl.pl/kmc
  
  Authors: Marek Kokot
  
  Version: 2.3.0
  Date   : 2015-08-21
*/


#ifndef _ASMLIB_WRAPPER_H
#define _ASMLIB_WRAPPER_H

#include "defs.h"
#ifdef DISABLE_ASMLIB
#define A_memcpy memcpy
#define SetMemcpyCacheLimit(X) 
#else
#include "libs/asmlib.h"
#endif

#endif