1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* scripts/output-format.sed: Fix bug in one of the s expressions
	which used / for one too many things.
This commit is contained in:
Ulrich Drepper
2002-12-08 08:25:05 +00:00
parent 3335502bec
commit bdb04f9220
49 changed files with 289 additions and 248 deletions

View File

@ -27,12 +27,9 @@
int
system (const char *line)
{
int oldtype;
int result;
int oldtype = CANCEL_ASYNC ();
CANCEL_ASYNC (oldtype);
result = __libc_system (line);
int result = __libc_system (line);
CANCEL_RESET (oldtype);