File: misc.h

package info (click to toggle)
diction 1.11-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 928 kB
  • sloc: sh: 3,155; ansic: 2,583; makefile: 88
file content (28 lines) | stat: -rw-r--r-- 640 bytes parent folder | download
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
/* Notes */ /*{{{C}}}*//*{{{*/
/*

This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without
modifications, as long as this notice is preserved.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

*/
/*}}}*/

#ifndef MISC_H
#define MISC_H

#ifdef BROKEN_REALLOC
#define realloc(p,s) myrealloc(p,s)
#endif

#ifndef _POSIX_PATH_MAX
#ifdef MAX_PATH
#define _POSIX_PATH_MAX MAX_PATH
#endif
#endif

#endif