Files
sdk/runtime/bin/socket_macos.h
T
Ben Konyi 0386f7ab6f Reverting until bots clear up.
Revert "Pulled a significant portion of Socket implementation into BaseSocket in order to prepare for the synchronous socket impementations which will also use these common methods."

This reverts commit 0422920142.

Revert "Updated incorrect call to Write in process_win.cc"

This reverts commit 9e1435148b.

Revert "Fixed incorrect call to Write from process_win.cc"

This reverts commit 11dcab2bed3c9ec8ec76bc200206ac202a4a5681.

Fixed incorrect call to Write from process_win.cc

BUG=

Review-Url: https://codereview.chromium.org/2791163004 .
2017-04-03 17:25:47 -07:00

17 lines
501 B
C

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef RUNTIME_BIN_SOCKET_MACOS_H_
#define RUNTIME_BIN_SOCKET_MACOS_H_
#if !defined(RUNTIME_BIN_SOCKET_H_)
#error Do not include socket_macos.h directly. Use socket.h.
#endif
#include <arpa/inet.h>
#include <netdb.h>
#include <sys/socket.h>
#endif // RUNTIME_BIN_SOCKET_MACOS_H_