*** empty log message ***

From-SVN: r552
This commit is contained in:
Michael Meissner 1992-03-21 23:15:25 +00:00
parent b3865ca9f8
commit 9a78963abb
1 changed files with 2 additions and 2 deletions

View File

@ -33,12 +33,12 @@ typedef const void *CPTR_T;
#define __proto(x) x
#else
#ifdef _STDIO_H_ /* Ultrix 4.0 */
#if defined(_STDIO_H_) || defined(__STDIO_H__) /* Ultrix 4.0, SGI */
typedef void *PTR_T;
typedef void *CPTR_T;
#else
typedef char *PTR_T; /* Ultrix 3.1 */
typedef char *PTR_T; /* Ultrix 3.1 */
typedef char *CPTR_T;
#endif