aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypto/yarrow/ylock.h
blob: 3e5260540f1165e8ab01e013ca79f20adb7fc4a1 (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
 */


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

#endif /* YLOCK_H */