Overview
Comment: | Fix includes in tests. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
23193dc30b5e99c7aee7520c0f06220b |
User & Date: | js on 2012-04-08 21:08:04 |
Other Links: | manifest | tags |
Context
2012-04-08
| ||
21:08 | Don't always build a static lib. check-in: 83b94fbdaf user: js tags: trunk | |
21:08 | Fix includes in tests. check-in: 23193dc30b user: js tags: trunk | |
20:55 | Adjust include guards. check-in: 63a650b235 user: js tags: trunk | |
Changes
Modified tests/tests.c from [70b7e88f0b] to [33cbcd9d9d].
︙ | ︙ | |||
22 23 24 25 26 27 28 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include <stdio.h> | | | | | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include <stdio.h> #include "object.h" #include "string.h" #include "array.h" int main() { CFWString *s[3]; CFWArray *a; size_t i; |
︙ | ︙ |