11 lines
173 B
C
11 lines
173 B
C
// 2016, Georg Sauthoff <mail@georg.so>, CDDL
|
|
#ifndef COMP_NAMELEN_H
|
|
#define COMP_NAMELEN_H
|
|
|
|
#if defined(sun) || defined(__sun)
|
|
#else
|
|
#define MAXNAMELEN 1024
|
|
#endif
|
|
|
|
#endif
|