#include <exec/types.h>
struct MsgPort *FindPort();
ULONG SafePutToPort(message, portname)
struct Message *message;
STRPTR portname;
{
struct MsgPort *port;
Forbid();
port = FindPort(portname);
if (port != NULL)
Permit();
return((ULONG)port); /* If zero, the port has gone away */
}