blob: 579faa44411f94584da216148031f3b440ebad98 [file] [log] [blame]
Craig Tillerab230452016-01-04 08:18:43 -08001/*
2 *
3 * Copyright 2016, Google Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
34#include <grpc/byte_buffer.h>
35#include <grpc/byte_buffer_reader.h>
36#include <grpc/census.h>
37#include <grpc/compression.h>
38#include <grpc/grpc.h>
39#include <grpc/grpc_security.h>
David Garcia Quintasb523c732016-01-25 18:22:28 -080040#include <grpc/impl/codegen/alloc.h>
David Garcia Quintas2425bbb2016-01-25 17:32:48 -080041#include <grpc/impl/codegen/atm.h>
42#include <grpc/impl/codegen/byte_buffer.h>
43#include <grpc/impl/codegen/compression_types.h>
David Garcia Quintas08a0a332016-01-21 01:04:36 -080044#include <grpc/impl/codegen/connectivity_state.h>
David Garcia Quintas2425bbb2016-01-25 17:32:48 -080045#include <grpc/impl/codegen/grpc_types.h>
46#include <grpc/impl/codegen/log.h>
David Garcia Quintas08a0a332016-01-21 01:04:36 -080047#include <grpc/impl/codegen/port_platform.h>
David Garcia Quintas2425bbb2016-01-25 17:32:48 -080048#include <grpc/impl/codegen/propagation_bits.h>
49#include <grpc/impl/codegen/slice.h>
50#include <grpc/impl/codegen/slice_buffer.h>
51#include <grpc/impl/codegen/status.h>
52#include <grpc/impl/codegen/sync.h>
53#include <grpc/impl/codegen/sync_generic.h>
David Garcia Quintas08a0a332016-01-21 01:04:36 -080054#include <grpc/impl/codegen/time.h>
Craig Tillerab230452016-01-04 08:18:43 -080055#include <grpc/status.h>
56#include <grpc/support/alloc.h>
57#include <grpc/support/atm.h>
58#include <grpc/support/avl.h>
59#include <grpc/support/cmdline.h>
60#include <grpc/support/cpu.h>
61#include <grpc/support/histogram.h>
62#include <grpc/support/host_port.h>
63#include <grpc/support/log.h>
64#include <grpc/support/port_platform.h>
65#include <grpc/support/slice.h>
66#include <grpc/support/slice_buffer.h>
67#include <grpc/support/string_util.h>
68#include <grpc/support/subprocess.h>
69#include <grpc/support/sync.h>
70#include <grpc/support/sync_generic.h>
Craig Tillerab230452016-01-04 08:18:43 -080071#include <grpc/support/thd.h>
72#include <grpc/support/time.h>
73#include <grpc/support/tls.h>
Craig Tillerab230452016-01-04 08:18:43 -080074#include <grpc/support/useful.h>
75
Craig Tillerbe0327b2016-01-06 13:57:40 -080076int main(int argc, char **argv) { return 0; }