119370Spst// { dg-do compile }
219370Spst
3130803Smarcel// Copyright (C) 2007-2015 Free Software Foundation, Inc.
4130803Smarcel//
5130803Smarcel// This file is part of the GNU ISO C++ Library.  This library is free
698944Sobrien// software; you can redistribute it and/or modify it under the
798944Sobrien// terms of the GNU General Public License as published by the
898944Sobrien// Free Software Foundation; either version 3, or (at your option)
998944Sobrien// any later version.
1019370Spst
1198944Sobrien// This library is distributed in the hope that it will be useful,
1298944Sobrien// but WITHOUT ANY WARRANTY; without even the implied warranty of
1398944Sobrien// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1498944Sobrien// GNU General Public License for more details.
1519370Spst
1698944Sobrien// You should have received a copy of the GNU General Public License along
1798944Sobrien// with this library; see the file COPYING3.  If not see
1898944Sobrien// <http://www.gnu.org/licenses/>.
1998944Sobrien
2019370Spst#include <iomanip>
2119370Spst
2219370Spstnamespace std {
2319370Spst#if 0
2498944Sobrien    // Types T1, T2, ... are unspecified implementation types
2598944Sobrien    T1 resetiosflags(ios_base::fmtflags mask);
2698944Sobrien    T2 setiosflags (ios_base::fmtflags mask);
2798944Sobrien    T3 setbase(int base);
2898944Sobrien    template<charT> T4 setfill(charT c);
2998944Sobrien    T5 setprecision(int n);
3098944Sobrien    T6 setw(int n);
3198944Sobrien#endif
3298944Sobrien}
3398944Sobrien