/* ---------------------------------------------------------------------- */
/*                   Copyright (C) 1991 by Natrlich!                     */
/*                      This file is copyrighted!                         */
/*                Refer to the documentation for details.                 */
/* ---------------------------------------------------------------------- */
#define LINKER 1
#include "defines.h"
#include "nasm.h"
#include "debug.h"


void refer( l, ex)
label huge  *l;
expr huge   *ex;
{
   register ref huge *p = ref_alloc();

   ENTER("refer");
   p->ref   = ex;       /* Note expression that needs fixing  */
   p->next  = l->refs;  /* put it in the first slot...        */
   l->refs  = p;
   LEAVE();
}

