.h files should stand alone, but we shouldn't include <sys/types.h>
[gnulib.git] / lib / memcoll.h
1 #ifndef MEMCOLL_H_
2 # define MEMCOLL_H_ 1
3
4 # if HAVE_CONFIG_H
5 #  include <config.h>
6 # endif
7
8 # include <stddef.h>
9
10 # ifndef PARAMS
11 #  if defined PROTOTYPES || (defined __STDC__ && __STDC__)
12 #   define PARAMS(Args) Args
13 #  else
14 #   define PARAMS(Args) ()
15 #  endif
16 # endif
17
18 int memcoll PARAMS ((char *, size_t, char *, size_t));
19
20 #endif /* MEMCOLL_H_ */