Files
ndk-samples/hello-libs/gen-libs/gperf/gperf.h
guanghuafan 347273726c Adding hello-libs into master-ndk branch for purpose of:
PREBUILD_STATIC_LIBRARY
 PREBUILD_SHARED_LIBRARY

 LOCAL_STATIC_LIBRARIES
 LOCAL_SHARED_LIBRARIES
2016-07-27 19:38:13 -07:00

31 lines
831 B
C

/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef __GPERF_HPP__
#define __GPERF_HPP__
#include <sys/types.h>
/*
* return current system ticks
*/
#ifdef __cplusplus
extern "C"
#endif // __cplusplus
uint64_t GetTicks(void);
#endif //__GPERF_HPP__