remove taospack on windows

This commit is contained in:
tickduan 2021-07-08 21:18:01 +08:00
parent 8b311b5a07
commit 1067f8e664
2 changed files with 12 additions and 1 deletions

View File

@ -15,12 +15,16 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//#include <iconv.h>
#include <stdio.h>
#include <stdlib.h>
//#include <sys/stat.h>
//#include <sys/syscall.h>
#ifndef WINDOWS
#include "os.h"
#include "tscompression.h"
#include "tdataformat.h"
@ -28,6 +32,7 @@
#define FT_CNT 8
void cost_start();
double cost_end(const char* tag);
int notsame_cnt = 0;
@ -742,3 +747,9 @@ int main(int argc, char *argv[]) {
return 0;
}
#else
int main(int argc, char *argv[]) {
printf("welcome to use taospack tools v1.3 for windows.\n");
}
#endif