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

This commit is contained in:
wtc%netscape.com 2001-10-12 21:45:13 +00:00
Родитель c40910e18a
Коммит d9c1ea3392
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -5,10 +5,10 @@
#include <stddef.h>
#include <stdio.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"