comparison src/m/hp800.h @ 5176:29bc8be2c604

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Thu, 25 Nov 1993 11:43:58 +0000
parents 7099e53fe4eb
children 7798bbb665fb
comparison
equal deleted inserted replaced
5175:7099e53fe4eb 5176:29bc8be2c604
173 #undef S_IFLNK 173 #undef S_IFLNK
174 #endif 174 #endif
175 175
176 /* Define the BSTRING functions in terms of the sysV functions. */ 176 /* Define the BSTRING functions in terms of the sysV functions. */
177 /* On HPUX 8.05, including types.h can include strings.h 177 /* On HPUX 8.05, including types.h can include strings.h
178 which defines these as macros. Hence the #ifndefs. */ 178 which declares these as functions. Hence the #ifndef. */
179 179
180 #ifndef HAVE_BCOPY 180 #ifndef HAVE_BCOPY
181 #define bcopy(a,b,s) memcpy (b,a,s) 181 #define bcopy(a,b,s) memcpy (b,a,s)
182 #define bzero(a,s) memset (a,0,s) 182 #define bzero(a,s) memset (a,0,s)
183 #define bcmp memcmp 183 #define bcmp memcmp