Codebase list libcryptx-perl / 04cf747
HP C compiler + IBM C compiler do not like "static inline" Karel Miko 7 years ago
1 changed file(s) with 4 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
7070
7171 #define SUPPLIED_PRIME 255
7272
73 static LTC_INLINE void packet_store_header (unsigned char *dst, int section, int subsection)
73 /* XXX: HP C compiler + IBM C compiler do not like "static inline" */
74 static void packet_store_header (unsigned char *dst, int section, int subsection)
7475 {
7576 LTC_ARGCHKVD(dst != NULL);
7677
8485
8586 }
8687
87 static LTC_INLINE int packet_valid_header (unsigned char *src, int section, int subsection)
88 /* XXX: HP C compiler + IBM C compiler do not like "static inline" */
89 static int packet_valid_header (unsigned char *src, int section, int subsection)
8890 {
8991 unsigned long ver;
9092