libtool-version: Catch up by incrementing current.
[gcc.git] / libjava / include / java-props.h
1 // java-props.h - Properties -*- c++ -*-
2
3 #ifndef __JAVA_PROPS_H__
4 #define __JAVA_PROPS_H__
5
6 typedef struct
7 {
8 char *key;
9 size_t key_length;
10 char *value;
11 size_t value_length;
12 } property_pair;
13
14 #endif
15