18 lines
465 B
18 lines
465 B
/*
|
|
* Copyright(C) 1999-2020, 2022 National Technology & Engineering Solutions
|
|
* of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
|
|
* NTESS, the U.S. Government retains certain rights in this software.
|
|
*
|
|
* See packages/seacas/LICENSE for details
|
|
*/
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void add_to_log(const char *my_name, double elapsed);
|
|
|
|
#ifdef __cplusplus
|
|
} /* close brackets on extern "C" declaration */
|
|
#endif
|
|
|