aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypto/yarrow/ylock.h
blob: 21d3911b7766f73f10208990ee1aa87bd7e309f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* -*- 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 */