]> sourceware.org Git - newlib-cygwin.git/commitdiff
merge from gcc
authorDJ Delorie <dj@redhat.com>
Wed, 28 Sep 2011 20:01:37 +0000 (20:01 +0000)
committerDJ Delorie <dj@redhat.com>
Wed, 28 Sep 2011 20:01:37 +0000 (20:01 +0000)
include/ChangeLog
include/libiberty.h
include/timeval-utils.h [new file with mode: 0644]

index cef3f201d56de70a9684e41f3b1a867b4d14bc3a..e2d1be1ee870c6a91fd2dc0998b665e1475ed6b7 100644 (file)
@@ -1,3 +1,9 @@
+2011-09-28  Doug Evans  <dje@google.com>
+
+       * timeval-utils.h: New file.
+
+       * libiberty.h (countargv): Declare.
+
 2011-09-26  Cary Coutant  <ccoutant@google.com>
 
        gcc PR lto/47247
index 32eb83a049eefec2a29f9eef2ab3aaadf72379d7..cacde800ea3dda438ea8292ab4b9354a63ad048b 100644 (file)
@@ -91,6 +91,10 @@ extern void expandargv PARAMS ((int *, char ***));
 
 extern int writeargv PARAMS ((char **, FILE *));
 
+/* Return the number of elements in argv.  */
+
+extern int countargv (char**);
+
 /* Return the last component of a path name.  Note that we can't use a
    prototype here because the parameter is declared inconsistently
    across different systems, sometimes as "char *" and sometimes as
diff --git a/include/timeval-utils.h b/include/timeval-utils.h
new file mode 100644 (file)
index 0000000..1caf9b3
--- /dev/null
@@ -0,0 +1,40 @@
+/* Basic struct timeval utilities.
+   Copyright (C) 2011 Free Software Foundation, Inc.
+
+This file is part of the libiberty library.
+Libiberty is free software; you can redistribute it and/or
+modify it under the terms of the GNU Library General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+Libiberty 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
+Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public
+License along with libiberty; see the file COPYING.LIB.  If not,
+write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
+Boston, MA 02110-1301, USA.  */
+
+#ifndef TIMEVAL_UTILS_H
+#define TIMEVAL_UTILS_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+/* forward decl */
+struct timeval;
+
+extern void timeval_add (struct timeval *result,
+                        const struct timeval *a, const struct timeval *b);
+
+extern void timeval_sub (struct timeval *result,
+                        const struct timeval *a, const struct timeval *b);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* TIMEVAL_UTILS_H */
This page took 0.033397 seconds and 5 git commands to generate.