Check-in Number:
|
284 | |
Date: |
2001-Jan-16 11:47:15 (local)
2001-Jan-16 10:47:15 (UTC) |
User: | simons |
Branch: | |
Comment: |
Added include of sys/types.h. Required on some systems to be able to
include regex.h. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/petidomo/approve.c 1.1 -> 1.2
--- approve.c 2001/01/15 18:48:49 1.1
+++ approve.c 2001/01/16 10:47:15 1.2
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/petidomo/approve.c,v $
- $Revision: 1.1 $
+ $Revision: 1.2 $
Copyright (C) 2000 by Peter Simons <simons@computer.org>.
@@ -18,9 +18,10 @@
*/
#include "petidomo.h"
-#include <regex.h>
+#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
+#include <regex.h>
int approve_main(char* mail)
{
|
|