1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-06 15:49:35 +03:00

Remove unnecessary "#include <sqliteInt.h>" from the shell code. (CVS 971)

FossilOrigin-Name: 6e5c497a42e52236edae8d99b4892d4b93db43f5
This commit is contained in:
drh
2003-05-13 00:24:41 +00:00
parent e62720d1f1
commit fe4184f8d1
3 changed files with 8 additions and 9 deletions

View File

@@ -12,13 +12,12 @@
** This file contains code to implement the "sqlite" command line
** utility for accessing SQLite databases.
**
** $Id: shell.c,v 1.78 2003/05/11 20:07:05 jplyon Exp $
** $Id: shell.c,v 1.79 2003/05/13 00:24:41 drh Exp $
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "sqlite.h"
#include "sqliteInt.h"
#include <ctype.h>
#if !defined(_WIN32) && !defined(WIN32) && !defined(__MACOS__)