1/*
2 * Copyright (c) 1989 Regents of the University of California.
3 * All rights reserved.  The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
7#include <popper.h>
8RCSID("$Id$");
9
10/*
11 *  quit:   Terminate a POP session
12 */
13
14int
15pop_quit (POP *p)
16{
17    /*  Release the message information list */
18    if (p->mlp) free (p->mlp);
19
20    return(POP_SUCCESS);
21}
22