ylock.h   [plain text]


/* -*- Mode: C; c-file-style: "bsd" -*- */

#ifndef YLOCK_H
#define YLOCK_H

#include "yarrow.h"

/* these functions should return:
 *
 *        YARROW_OK on success
 *    and YARROW_LOCKING on failure
 */


static int LOCK( void ) {  return (YARROW_OK); }
static int UNLOCK( void ) {  return (YARROW_OK); }

#endif /* YLOCK_H */