diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2008-09-12 19:11:53 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2008-09-12 19:11:53 -0400 |
commit | b6ab114212c0e4c3346ceb5b207f14c526ab81e7 (patch) | |
tree | d926518a8403593914cc853b86dc62b3e1b3ede3 /include | |
parent | 999f3362d50a753c1801d565766219808efdb1a5 (diff) |
Array-index based devPrivates implementation.
Note: DevPrivateKey is now pointer-to-int, which means
each key now needs to point to some global storage of
size at least sizeof(int).
Diffstat (limited to 'include')
-rw-r--r-- | include/privates.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/privates.h b/include/privates.h index 98d893c77..e3fa83cde 100644 --- a/include/privates.h +++ b/include/privates.h @@ -19,7 +19,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * STUFF FOR PRIVATES *****************************************************************/ -typedef void *DevPrivateKey; +typedef int *DevPrivateKey; struct _Private; typedef struct _Private PrivateRec; |