Subversion Repositories freemyipod

Rev

Rev 71 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 71 Rev 113
Line 34... Line 34...
34
QUICKREF
34
QUICKREF
35
        memmove ansi pure
35
        memmove ansi pure
36
*/
36
*/
37
 
37
 
38
#include "global.h"
38
#include "global.h"
39
#include <_ansi.h>
39
#include "include/string.h"
40
#include <string.h>
40
#include "include/_ansi.h"
41
 
41
 
42
/* Nonzero if either X or Y is not aligned on a "long" boundary.  */
42
/* Nonzero if either X or Y is not aligned on a "long" boundary.  */
43
#define UNALIGNED(X, Y) \
43
#define UNALIGNED(X, Y) \
44
  (((long)X & (sizeof (long) - 1)) | ((long)Y & (sizeof (long) - 1)))
44
  (((long)X & (sizeof (long) - 1)) | ((long)Y & (sizeof (long) - 1)))
45
 
45