/*********************************************************************** * * * This software is part of the ast package * * Copyright (c) 1985-2011 AT&T Intellectual Property * * Copyright (c) 2020-2022 Contributors to ksh 93u+m * * and is licensed under the * * Eclipse Public License, Version 1.0 * * by AT&T Intellectual Property * * * * A copy of the License is available at * * http://www.eclipse.org/org/documents/epl-v10.html * * (with md5 checksum b35adb5213ca9657e911e9befb180842) * * * * Information and Software Systems Research * * AT&T Research * * Florham Park NJ * * * * Glenn Fowler * * David Korn * * Phong Vo * * * ***********************************************************************/ #ifndef _STDHDR_H #define _STDHDR_H 1 #include #define _ast_fseeko ______fseeko #define _ast_ftello ______ftello #include "sfhdr.h" #undef _ast_fseeko #undef _ast_ftello #include "stdio.h" #define SF_MB 010000 #define SF_WC 020000 #define FWIDE(f,r) \ do \ { \ if (fwide(f, 0) < 0) \ return r; \ f->bits |= SF_WC; \ } while (0) #ifdef __EXPORT__ #define extern __EXPORT__ #endif extern int sfdcwide(Sfio_t*); #endif