diff --git a/mozilla/modules/plugin/base/public/nptypes.h b/mozilla/modules/plugin/base/public/nptypes.h index 051ccd705e4..6f6e3fbf4de 100644 --- a/mozilla/modules/plugin/base/public/nptypes.h +++ b/mozilla/modules/plugin/base/public/nptypes.h @@ -67,10 +67,8 @@ /* * BSD/OS ships no header that defines uint32_t, nor bool (for C) - * OpenBSD ships no header that defines uint32_t and using its bool macro is - * unsafe. */ - #if defined(bsdi) || defined(OPENBSD) + #if defined(bsdi) typedef u_int32_t uint32_t; #if !defined(__cplusplus) @@ -78,7 +76,7 @@ #endif #else /* - * FreeBSD defines uint32_t and bool. + * FreeBSD and OpenBSD define uint32_t and bool. */ #include #include