New file.

From-SVN: r45366
This commit is contained in:
Richard Henderson 2001-09-03 13:57:15 -07:00
parent 7743fdb993
commit 0f64ba53ee

View File

@ -0,0 +1,15 @@
extern int __dummy (void *__preg, const char *__string);
extern int rpmatch (const char *response);
int
rpmatch (const char *response)
{
auto inline int try (void *re);
inline int try (void *re)
{
return __dummy (re, response);
}
static void *yesre;
return (try (&yesre));
}