17 lines
168 B
C
17 lines
168 B
C
|
|
#include <stdlib.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include "free.h"
|
|
|
|
void free_cmdln_flags(
|
|
struct cmdln_flags* flags)
|
|
{
|
|
ENTER;
|
|
|
|
free(flags);
|
|
|
|
EXIT;
|
|
}
|
|
|