Nav2 Navigation Stack - rolling  main
ROS 2 Navigation Stack
portable_utils.hpp
1 // Copyright (c) Samsung Research America
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 #ifndef NAV2_AMCL__PORTABLE_UTILS_HPP_
15 #define NAV2_AMCL__PORTABLE_UTILS_HPP_
16 
17 #include <stdlib.h>
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 #ifndef HAVE_DRAND48
24 // Some system (e.g., Windows) doesn't come with drand48(), srand48().
25 // Use rand, and srand for such system.
26 static double drand48(void)
27 {
28  return ((double)rand()) / RAND_MAX;// NOLINT
29 }
30 
31 static void srand48(long int seedval)// NOLINT
32 {
33  srand(seedval);
34 }
35 #endif
36 
37 #ifdef __cplusplus
38 }
39 #endif
40 
41 #endif // NAV2_AMCL__PORTABLE_UTILS_HPP_