mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
489b2ee681
Reported by: alex at to.govorit.ru Obtained from: Arj's author Tested by: Guilherme M. Schroeder <lero420 at gmail.com> Feature safe: yes
51 lines
1.7 KiB
C
51 lines
1.7 KiB
C
--- arj_proc.h.orig 2004-01-25 08:39:30.000000000 -0200
|
|
+++ arj_proc.h 2010-02-19 08:35:05.000000000 -0200
|
|
@@ -8,15 +8,17 @@
|
|
#ifndef ARJ_PROC_INCLUDED
|
|
#define ARJ_PROC_INCLUDED
|
|
|
|
+#include <stdint.h>
|
|
+
|
|
/* Helper macros */
|
|
|
|
-#define mget_byte(p) (*(unsigned char FAR *)(p)&0xFF)
|
|
-#define mput_byte(c, p) *(unsigned char FAR *)(p)=(unsigned char)(c)
|
|
+#define mget_byte(p) (*(uint8_t FAR *)(p)&0xFF)
|
|
+#define mput_byte(c, p) *(uint8_t FAR *)(p)=(uint8_t)(c)
|
|
#ifndef WORDS_BIGENDIAN
|
|
-#define mget_word(p) (*(unsigned short *)(p)&0xFFFF)
|
|
-#define mput_word(w,p) (*(unsigned short *)(p)=(unsigned short)(w))
|
|
-#define mget_dword(p) (*(unsigned long *)(p))
|
|
-#define mput_dword(w,p) (*(unsigned long *)(p)=(unsigned long)(w))
|
|
+#define mget_word(p) (*(uint16_t *)(p)&0xFFFF)
|
|
+#define mput_word(w,p) (*(uint16_t *)(p)=(uint16_t)(w))
|
|
+#define mget_dword(p) (*(uint32_t *)(p))
|
|
+#define mput_dword(w,p) (*(uint32_t *)(p)=(uint32_t)(w))
|
|
#endif
|
|
|
|
/* Prototypes */
|
|
@@ -31,7 +33,7 @@
|
|
int translate_path(char *name);
|
|
void restart_proc(char *dest);
|
|
int search_for_extension(char *name, char *ext_list);
|
|
-unsigned long get_volfree(unsigned int increment);
|
|
+unsigned long get_volfree(unsigned long increment);
|
|
unsigned int check_multivolume(unsigned int increment);
|
|
void store();
|
|
void hollow_encode();
|
|
@@ -61,10 +63,10 @@
|
|
void strip_lf(char *str);
|
|
char *ltrim(char *str);
|
|
#ifdef WORDS_BIGENDIAN
|
|
-unsigned int mget_word(char FAR *p);
|
|
-unsigned long mget_dword(char FAR *p);
|
|
-void mput_word(unsigned int w, char FAR *p);
|
|
-void mput_dword(unsigned long d, char FAR *p);
|
|
+uint16_t mget_word(char FAR *p);
|
|
+uint32_t mget_dword(char FAR *p);
|
|
+void mput_word(uint16_t w, char FAR *p);
|
|
+void mput_dword(uint32_t d, char FAR *p);
|
|
#endif
|
|
|
|
#endif
|