From 2a2f529a91bcbef96e8bb9c5655a460b6b41be66 Mon Sep 17 00:00:00 2001 From: "yu.dongliang" <18588496441@163.com> Date: Tue, 18 Jul 2023 14:15:35 +0800 Subject: [PATCH] ses_core.h --- main.c | 2 +- ses_layout.h => ses_core.h | 5 ++--- ses_layout.c | 3 ++- 3 files changed, 5 insertions(+), 5 deletions(-) rename ses_layout.h => ses_core.h (58%) diff --git a/main.c b/main.c index 14184b6..50ac745 100644 --- a/main.c +++ b/main.c @@ -1,7 +1,7 @@ #include #include #include -#include"ses_layout.h" +#include"ses_core.h" char* component_types[SCF_EDA_Components_NB] = { diff --git a/ses_layout.h b/ses_core.h similarity index 58% rename from ses_layout.h rename to ses_core.h index ae33f7b..c2f54c8 100644 --- a/ses_layout.h +++ b/ses_core.h @@ -1,7 +1,6 @@ -#ifndef SES_LAYOUT_H -#define SES_LAYOUT_H +#ifndef SES_CORE_H +#define SES_CORE_H -#include #include"scf_eda_pb.h" #include"scf_vector.h" diff --git a/ses_layout.c b/ses_layout.c index 9bfb398..8a2589c 100644 --- a/ses_layout.c +++ b/ses_layout.c @@ -1,4 +1,5 @@ -#include"ses_layout.h" +#include +#include"ses_core.h" int epin_cmp(const void* v0, const void* v1) { -- 2.25.1