]> git.saurik.com Git - bison.git/blobdiff - src/files.c
maint: an envvar equal to "00" is 0.
[bison.git] / src / files.c
index 550e42ed49411c89250a4a766340c54afa643a05..b7000cfa6e05b38626ac9345d745c54471b5ff07 100644 (file)
@@ -207,7 +207,7 @@ file_name_split (const char *file_name,
   *base = last_component (file_name);
 
   /* Look for the extension, i.e., look for the last dot. */
   *base = last_component (file_name);
 
   /* Look for the extension, i.e., look for the last dot. */
-  *ext = mbsrchr (*base, '.');
+  *ext = strrchr (*base, '.');
   *tab = NULL;
 
   /* If there is an extension, check if there is a `.tab' part right
   *tab = NULL;
 
   /* If there is an extension, check if there is a `.tab' part right