source: azure_iot_hub_f767zi/trunk/azure_iot_sdk/c-utility/src/gb_rand.c@ 457

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

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
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.