* sysdeps/generic/system.c (__libc_system): Fix typo, reported by

Kevin Pedretti <pedretti@ieee.org>.
This commit is contained in:
Andreas Jaeger 2003-12-17 09:24:19 +00:00
parent 27a754a97b
commit 5c7cc28c86
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991, 1993, 1995, 1996, 1997 Free Software Foundation, Inc.
/* Copyright (C) 1991, 1993, 1995, 1996, 1997, 2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -28,7 +28,7 @@ __libc_system (line)
if (line == NULL)
return 0; /* This indicates no command processor. */
__sys_errno (ENOSYS);
__set_errno (ENOSYS);
return -1;
}
weak_alias (__libc_system, system)