Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows & Linux Support #1

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added VC++ Macro ( disable C4996 )
  • Loading branch information
4kizuki committed Oct 11, 2017
commit 817ba406ace44f53e5bff321ac085df2a3ca1f27
2 changes: 2 additions & 0 deletions consensus.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
//
// Consensus.c
//
// vc++ disable 4996
#define _CRT_SECURE_NO_WARNINGS

#include <stdio.h>
#include <stdlib.h>
Expand Down
2 changes: 2 additions & 0 deletions handle_one_read.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
//
// Created by Shinichi Morishita on 2017/10/06.
//
// vc++ disable 4996
#define _CRT_SECURE_NO_WARNINGS

#include <stdio.h>
#include <stdlib.h>
Expand Down
2 changes: 2 additions & 0 deletions k_means_clustering.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
//
// Created by Shinichi Morishita on 2017/10/06.
//
// vc++ disable 4996
#define _CRT_SECURE_NO_WARNINGS

#include <stdio.h>
#include <stdlib.h>
Expand Down
2 changes: 2 additions & 0 deletions print_and_feed_one_repeat.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
//
// Created by Shinichi Morishita on 2017/10/06.
//
// vc++ disable 4996
#define _CRT_SECURE_NO_WARNINGS

#include <stdio.h>
#include <stdlib.h>
Expand Down
2 changes: 2 additions & 0 deletions wrap_around_DP.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
//
// Created by Shinichi Morishita on 2017/10/06.
//
// vc++ disable 4996
#define _CRT_SECURE_NO_WARNINGS

#include <stdio.h>
#include <stdlib.h>
Expand Down