blob: 539c31675a6853fd50184829e5b99802bf6c94d2 [file] [log] [blame]
#include <stdlib.h>
#include <stdio.h>
#include <parlib.h>
#include <unistd.h>
#include <signal.h>
#include <fcntl.h>
#include <nixip.h>
#include <ndb.h>
struct ndb*
ndbcat(struct ndb *a, struct ndb *b)
{
struct ndb *db = a;
if(a == NULL)
return b;
while(a->next != NULL)
a = a->next;
a->next = b;
return db;
}