From 5a63a7ad3bcb1e620ea91c297f99c60ba0d05865 Mon Sep 17 00:00:00 2001
From: NemykinNO <NemykinNO@mpei.ru>
Date: Tue, 6 Jun 2023 18:53:40 +0300
Subject: [PATCH] =?UTF-8?q?build:=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5?=
 =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?=
 =?UTF-8?q?=20=D0=B4=D0=BE=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8=20=D1=81?=
 =?UTF-8?q?=20curl=20=D0=B1=D0=B5=D0=B7=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BE?=
 =?UTF-8?q?=D0=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 main.cpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/main.cpp b/main.cpp
index 56a63d3..0560ef9 100644
--- a/main.cpp
+++ b/main.cpp
@@ -6,6 +6,7 @@
 #include "text.h"
 #include "svg.h"
 #include "histogram_internal.h"
+#include <curl/curl.h>
 using namespace std;
 
 struct Input {
@@ -32,9 +33,11 @@ input_data(istream &tin, bool prompt){
     tin >> in.bin_count;
     return in;
 }
+//
 
 
 int main() {
+    curl_global_init(CURL_GLOBAL_ALL);
     Input in = input_data(cin, false);
     auto bins = make_histogramm(in.numbers, in.bin_count);
     show_histogram_svg(bins);