
#ifndef __SG_IOMANIP
#define __SG_IOMANIP 1

# include <iomanip.h>

namespace std {

   using ::setw;
   using ::setprecision;

   inline int  setfill(int f) { ::setfill(f); }
};

#endif // !__SG_IOMANIP

