source: azure_iot_hub_f767zi/trunk/azure_iot_sdk/c-utility/pal/toppers/socket_async_os.h@ 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-chdr;charset=UTF-8
File size: 438 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//This file pulls in OS-specific header files to allow compilation of socket_async.c under
5// most OS's except for Windows.
6
7// For Linux systems
8#include <sys/types.h>
9//#include <lwip/sockets.h>
10#include <sys/select.h>
11#include <sys/errno.h>
12#include <unistd.h>
13//#include <netdb.h>
14
Note: See TracBrowser for help on using the repository browser.