aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/HostGetOpt.h
blob: f4b2c87be2304d73c78b947769399ae8371b22b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//===-- GetOpt.h ------------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#pragma once

#ifndef _MSC_VER

#include <unistd.h>
#include <getopt.h>

#else

#include <lldb/Host/windows/GetOptInc.h>

#endif