Rewrote #ifndef #else #endif by the equivalent #ifdef #else #endif.

git-svn-id: svn://10.0.0.236/trunk@105579 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%netscape.com
2001-10-17 01:10:16 +00:00
parent 2a7864f0bc
commit 70ee1142a6

View File

@@ -74,10 +74,10 @@
#ifndef _DB_H_
#define _DB_H_
#ifndef HAVE_SYS_CDEFS_H
#include "cdefs.h"
#else
#ifdef HAVE_SYS_CDEFS_H
#include <sys/cdefs.h>
#else
#include "cdefs.h"
#endif
#include "prtypes.h"