mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-18 06:45:33 +00:00
Rewrote #ifndef #else #endif with the equivalent #ifdef #else #endif.
This commit is contained in:
parent
c40910e18a
commit
d9c1ea3392
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user