Blame view

src/misc.c 670 Bytes
965dadaa   Salvador Abreu   initial commit fr...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "misc.h"

#if !defined(HAVE_FFSL) && __SIZEOF_LONG__ != __SIZEOF_INT__
#if __SIZEOF_LONG__ != 8 || __SIZEOF_INT__ != 4
#error "this ffsl only works if long is 64 bits and int is 32"
#endif

#include <strings.h>

int ffsl(long int i)
{
  int b;

  if (b = ffs((int) (i & 0x00000000FFFFFFFFL)))
    return b;

  if (b = ffs((int) (i >> 32)))
    return b + 32;

  return 0;
}
#endif

#ifndef HAVE_POSIX_MEMALIGN
#ifdef HAVE_MEMALIGN
#include <stdlib.h>

int posix_memalign(void **memptr, size_t alignment, size_t size)
{
  *memptr = memalign(alignment, size);

  if (*memptr == NULL)
    return 1;		// XXX: should be EINVAL or ENOMEM

  return 0;
}
#endif
#endif