summaryrefslogtreecommitdiffstats
path: root/native_client_sdk/src/libraries/nacl_io/syscalls/tcflow.c
blob: a29915351cf2f2a1b3c8e31ce71c2e8e059b918b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Copyright 2013 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

#include <errno.h>

#include "nacl_io/kernel_intercept.h"
#include "nacl_io/kernel_wrap.h"

int tcflow(int fd, int action) {
  errno = ENOSYS;
  return -1;
}