1275072Semaste// TR1 ctype.h -*- C++ -*-
2275072Semaste
3275072Semaste// Copyright (C) 2006-2020 Free Software Foundation, Inc.
4275072Semaste//
5275072Semaste// This file is part of the GNU ISO C++ Library.  This library is free
6275072Semaste// software; you can redistribute it and/or modify it under the
7275072Semaste// terms of the GNU General Public License as published by the
8275072Semaste// Free Software Foundation; either version 3, or (at your option)
9275072Semaste// any later version.
10275072Semaste
11275072Semaste// This library is distributed in the hope that it will be useful,
12275072Semaste// but WITHOUT ANY WARRANTY; without even the implied warranty of
13275072Semaste// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14275072Semaste// GNU General Public License for more details.
15275072Semaste
16275072Semaste// Under Section 7 of GPL version 3, you are granted additional
17275072Semaste// permissions described in the GCC Runtime Library Exception, version
18275072Semaste// 3.1, as published by the Free Software Foundation.
19275072Semaste
20275072Semaste// You should have received a copy of the GNU General Public License and
21280031Sdim// a copy of the GCC Runtime Library Exception along with this program;
22280031Sdim// see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
23280031Sdim// <http://www.gnu.org/licenses/>.
24280031Sdim
25280031Sdim/** @file tr1/ctype.h
26275072Semaste *  This is a TR1 C++ Library header.
27296417Sdim */
28275072Semaste
29275072Semaste#ifndef _TR1_CTYPE_H
30275072Semaste#define _TR1_CTYPE_H 1
31275072Semaste
32280031Sdim#include <tr1/cctype>
33280031Sdim
34280031Sdim#endif
35280031Sdim