aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandreao <andreao@138bc75d-0d04-0410-961f-82ee72b054a4>2009-06-26 16:46:50 +0000
committerandreao <andreao@138bc75d-0d04-0410-961f-82ee72b054a4>2009-06-26 16:46:50 +0000
commitaaade22890c79b7e3c6f7f17c87f28344c36b055 (patch)
tree39d1c2729534bb6337516b51d886a1666527d5bb
parentf69b39484305f02a652c4ebd443d5a31fb2fbd45 (diff)
fix typo, fix Copyright info
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/st/cli-be@148973 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--libstd/include/libgen.h23
-rw-r--r--libstd/include/sys/time.h23
-rw-r--r--libstd/src/exit.c2
3 files changed, 41 insertions, 7 deletions
diff --git a/libstd/include/libgen.h b/libstd/include/libgen.h
index 4e4f05a9304..cda5d5947bf 100644
--- a/libstd/include/libgen.h
+++ b/libstd/include/libgen.h
@@ -1,7 +1,24 @@
/*
- * Copyright (C) 2008, STMicroelectronics NV, All Rights Reserved.
- *
- */
+
+ Copyright (C) 2008-2009 Free Software Foundation, Inc.
+ Contributed by STMicroelectronics
+
+This file is part of GCC.
+
+GCC is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free
+Software Foundation; either version 2, or (at your option) any later
+version.
+
+GCC is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or
+FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+for more details.
+
+You should have received a copy of the GNU General Public License
+along with GCC; see the file COPYING. If not, write to the Free
+Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301, USA. */
#ifndef _LIBGEN_H
#define _LIBGEN_H
diff --git a/libstd/include/sys/time.h b/libstd/include/sys/time.h
index 456865dc21e..56fd7c363bc 100644
--- a/libstd/include/sys/time.h
+++ b/libstd/include/sys/time.h
@@ -1,7 +1,24 @@
/*
- * Copyright (C) 2008, STMicroelectronics NV, All Rights Reserved.
- *
- */
+
+ Copyright (C) 2008-2009 Free Software Foundation, Inc.
+ Contributed by STMicroelectronics
+
+This file is part of GCC.
+
+GCC is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free
+Software Foundation; either version 2, or (at your option) any later
+version.
+
+GCC is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or
+FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+for more details.
+
+You should have received a copy of the GNU General Public License
+along with GCC; see the file COPYING. If not, write to the Free
+Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301, USA. */
#ifndef _SYS_TIME_H
#define _SYS_TIME_H
diff --git a/libstd/src/exit.c b/libstd/src/exit.c
index 6a8b3fa9910..2820ed588f8 100644
--- a/libstd/src/exit.c
+++ b/libstd/src/exit.c
@@ -65,7 +65,7 @@ LIBSTD_LPROTO_IMPL(void, exit, int status)
* all open streams are closed,
* all files created by the tmpfile function are removed.
*/
- LIBSTD_LNAME(__io_ftable_close_all());
+ LIBSTD_LNAME(__io_ftable_close_all)();
/* Giving control back to host */
LIBSTD_HNAME(exit)(status);