source: azure_iot_hub/trunk/azure_iohub/c-utility/src/gb_rand.c@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csrc
File size: 327 bytes
Line 
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
4#ifdef __cplusplus
5#include <cstdlib>
6#else
7#include <stdlib.h>
8#endif
9
10#include "azure_c_shared_utility/gb_rand.h"
11
12/*this is rand*/
13int gb_rand(void)
14{
15 return rand();
16}
Note: See TracBrowser for help on using the repository browser.