Subversion Repositories freemyipod

Rev

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

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