view lib/stdopen.h @ 40086:d6de7c427079

stdopen: modernize and simplify * lib/stdopen.c: Update copyright date Do not include sys/types.h; no longer needed these days. (stdopen): Use C99-style decl in loop. Return int errno value, rather than just a bool. Do not worry about fd mismatches, since the caller cares only if 0, 1, 2 are occupied. * lib/stdopen.h: No need to include <stdbool.h>. * m4/stdopen.m4: Remove. * modules/stdopen: New file.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 05 Jan 2019 18:02:32 -0800
parents a238d0c7991f
children
line wrap: on
line source

#ifndef STDOPEN_H
# define STDOPEN_H 1

# ifdef __cplusplus
extern "C" {
# endif

int stdopen (void);

# ifdef __cplusplus
}
# endif

#endif