summaryrefslogtreecommitdiffstats
path: root/net/khttpd/security.h
blob: 346beacbb7a14403266075f357a992e724ad0d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _INCLUDE_GUARD_SECURITY_H
#define _INCLUDE_GUARD_SECURITY_H

struct DynamicString;

struct DynamicString
{
	struct DynamicString* Next;
	char value[32-sizeof(void*)];  /* fill 1 cache-line */
};

#endif