Subversion Repositories freemyipod

Rev

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

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