Windows: Add krb5_cc_copy_creds to the exports list
[heimdal.git] / appl / popper / pop_quit.c
blobebea91d3bec885e121a9a377684571f4d6d7b310
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 */
7 #include <popper.h>
8 RCSID("$Id$");
11 * quit: Terminate a POP session
14 int
15 pop_quit (POP *p)
17 /* Release the message information list */
18 if (p->mlp) free (p->mlp);
20 return(POP_SUCCESS);