15 lines
380 B
C
15 lines
380 B
C
/*
|
|
* Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
|
|
* All rights reserved. This file is part of MD-Bench.
|
|
* Use of this source code is governed by a LGPL-3.0
|
|
* license that can be found in the LICENSE file.
|
|
*/
|
|
#ifndef __TIMING_H_
|
|
#define __TIMING_H_
|
|
|
|
extern double getTimeStamp(void);
|
|
extern double getTimeResolution(void);
|
|
extern double getTimeStamp_(void);
|
|
|
|
#endif
|