Mercurial > hg > octave-kai > gnulib-hg
view lib/idcache.h @ 17444:a83ad7365d40
fnmatch: don't goto over declaration
* lib/fnmatch_loop.c (FCT): Hoist local up one level, to avoid
undefined behavior for goto over a declaration.
Problem reported by Charlie Brown in
<http://lists.gnu.org/archive/html/bug-gnulib/2013-07/msg00009.html>.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Sat, 06 Jul 2013 17:12:29 -0700 |
parents | 71cb6e488d75 |
children |
line wrap: on
line source
#ifndef IDCACHE_H # define IDCACHE_H 1 # include <sys/types.h> extern char *getuser (uid_t uid); extern char *getgroup (gid_t gid); extern uid_t *getuidbyname (const char *user); extern gid_t *getgidbyname (const char *group); #endif