]> granicus.if.org Git - postgresql/blobdiff - src/include/rusagestub.h
Remove cvs keywords from all files.
[postgresql] / src / include / rusagestub.h
index 0d55c1f92871eaf0d4888b5fe9fbfdd4ad25c1f0..dbfa494dd6c6d26558afe6de6e91c1e1a65016f6 100644 (file)
@@ -1,12 +1,13 @@
 /*-------------------------------------------------------------------------
  *
- * rusagestub.h--
+ * rusagestub.h
  *       Stubs for getrusage(3).
  *
  *
- * Copyright (c) 1994, Regents of the University of California
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: rusagestub.h,v 1.1 1998/02/20 13:10:03 scrappy Exp $ 
+ * src/include/rusagestub.h
  *
  *-------------------------------------------------------------------------
  */
 #define RUSAGESTUB_H
 
 #include <sys/time.h>                  /* for struct timeval */
+#ifndef WIN32
 #include <sys/times.h>                 /* for struct tms */
+#endif
 #include <limits.h>                            /* for CLK_TCK */
 
 #define RUSAGE_SELF            0
-#define RUSAGE_CHILDREN -1
+#define RUSAGE_CHILDREN (-1)
 
 struct rusage
 {
@@ -28,4 +31,4 @@ struct rusage
 
 extern int     getrusage(int who, struct rusage * rusage);
 
-#endif                                                 /* RUSAGESTUB_H */
+#endif   /* RUSAGESTUB_H */